37 lines
1.0 KiB
C#
37 lines
1.0 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayPayAppCarPayModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayPayAppCarPayModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 商户订单号,需要保证不重复
|
||
/// </summary>
|
||
[XmlElement("out_trade_no")]
|
||
public string OutTradeNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 订单二维码码串,调用开放平台预下单接口alipay.trade.precreate生成
|
||
/// </summary>
|
||
[XmlElement("qr_code")]
|
||
public string QrCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 订单标题
|
||
/// </summary>
|
||
[XmlElement("subject")]
|
||
public string Subject { get; set; }
|
||
|
||
/// <summary>
|
||
/// 订单总金额,单位为元,精确到小数点后两位,取值范围[0.01,100000000]
|
||
/// </summary>
|
||
[XmlElement("total_amount")]
|
||
public string TotalAmount { get; set; }
|
||
}
|
||
}
|