using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TicketTransInfo Data Structure.
///
[Serializable]
public class TicketTransInfo : AopObject
{
///
/// 流水创建时间
///
[XmlElement("create_time")]
public string CreateTime { get; set; }
///
/// 最后修改时间,也就是流水状态更新为成功的时间
///
[XmlElement("last_modify_time")]
public string LastModifyTime { get; set; }
///
/// 流水涉及凭证数量,若为普通商品则为1, 若为次卡则为操作的凭证份数
///
[XmlElement("quantity")]
public string Quantity { get; set; }
///
/// 凭证流水id
///
[XmlElement("ticket_trans_id")]
public string TicketTransId { get; set; }
///
/// 流水类型
///
[XmlElement("ticket_trans_type")]
public string TicketTransType { get; set; }
}
}