NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPayAppCarPayModel.cs

37 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}