using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// TicketCodeQueryResponse Data Structure. /// [Serializable] public class TicketCodeQueryResponse : AopObject { /// /// 当前可用份数 /// [XmlElement("available_quantity")] public string AvailableQuantity { get; set; } /// /// 凭证生效时间 yyyy-MM-dd HH:mm:ss /// [XmlElement("effect_date")] public string EffectDate { get; set; } /// /// 凭证失效时间 格式 yyyy-MM-dd HH:mm:ss /// [XmlElement("expire_date")] public string ExpireDate { get; set; } /// /// 商品编码 /// [XmlArray("item_goods_ids")] [XmlArrayItem("string")] public List ItemGoodsIds { get; set; } /// /// 商品id /// [XmlElement("item_id")] public string ItemId { get; set; } /// /// 商品名称 /// [XmlElement("item_name")] public string ItemName { get; set; } /// /// 凭证核销方式 /// [XmlElement("ticket_display_mode")] public string TicketDisplayMode { get; set; } /// /// ticket id /// [XmlElement("ticket_id")] public string TicketId { get; set; } /// /// 券状态 /// [XmlElement("ticket_status")] public string TicketStatus { get; set; } /// /// 是否次卡 /// [XmlElement("time_cards")] public bool TimeCards { get; set; } /// /// 初始份数 /// [XmlElement("total_quantity")] public string TotalQuantity { get; set; } } }