using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// CodeNOList Data Structure.
///
[Serializable]
public class CodeNOList : AopObject
{
///
/// 金额
///
[XmlElement("amount")]
public string Amount { get; set; }
///
/// 对应TP活动码
///
[XmlElement("code_no")]
public string CodeNo { get; set; }
///
/// 如果ticket_type为油券,则该字段1:石化,2:石油
///
[XmlElement("sub_type")]
public string SubType { get; set; }
///
/// 券类型,1:油券
///
[XmlElement("ticket_type")]
public string TicketType { get; set; }
///
/// 有效期
///
[XmlElement("valid_date")]
public string ValidDate { get; set; }
}
}