NewGaoKaoApi/PaymentSDK/AliPay/Domain/CodeNOList.cs

43 lines
1013 B
C#
Raw Permalink 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>
/// CodeNOList Data Structure.
/// </summary>
[Serializable]
public class CodeNOList : AopObject
{
/// <summary>
/// 金额
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 对应TP活动码
/// </summary>
[XmlElement("code_no")]
public string CodeNo { get; set; }
/// <summary>
/// 如果ticket_type为油券则该字段1:石化2:石油
/// </summary>
[XmlElement("sub_type")]
public string SubType { get; set; }
/// <summary>
/// 券类型,1:油券
/// </summary>
[XmlElement("ticket_type")]
public string TicketType { get; set; }
/// <summary>
/// 有效期
/// </summary>
[XmlElement("valid_date")]
public string ValidDate { get; set; }
}
}