using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MES.Production.Entity.Model
{
public class PayBackInfo
{
///
/// 微信返回信息
///
public WxPayInfo wxInfo
{
get;set;
}
///
/// 淘宝返回信息
///
public AlipayInfo taoBaoPayInfo
{
get;set;
}
///
/// 支付类型
///
public int payType
{
get;set;
}
}
///
/// 支付宝支付信息
///
public class AlipayInfo
{
///
///
///
public string orderstr
{
get;set;
}
}
///
/// 微信支付信息
///
public class WxPayInfo
{
public string appid
{
get; set;
}
public string partnerid
{
get; set;
}
public string prepayid
{
get; set;
}
public string noncestr
{
get; set;
}
public string timestamp
{
get; set;
}
public string packagename
{
get; set;
}
public string sign
{
get; set;
}
}
}