123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Domain
- {
-
-
-
- [Serializable]
- public class MerchantTicketModel : AopObject
- {
-
-
-
- [XmlElement("available_amt")]
- public string AvailableAmt { get; set; }
-
-
-
- [XmlElement("biz_type")]
- public string BizType { get; set; }
-
-
-
- [XmlElement("discount_amt")]
- public string DiscountAmt { get; set; }
-
-
-
- [XmlElement("donate_flag")]
- public string DonateFlag { get; set; }
-
-
-
- [XmlElement("ext_info")]
- public string ExtInfo { get; set; }
-
-
-
- [XmlElement("gmt_active")]
- public string GmtActive { get; set; }
-
-
-
- [XmlElement("gmt_create")]
- public string GmtCreate { get; set; }
-
-
-
- [XmlElement("gmt_expired")]
- public string GmtExpired { get; set; }
-
-
-
- [XmlElement("instructions")]
- public string Instructions { get; set; }
-
-
-
- [XmlElement("memo")]
- public string Memo { get; set; }
-
-
-
- [XmlElement("merchant_id")]
- public string MerchantId { get; set; }
-
-
-
- [XmlElement("name")]
- public string Name { get; set; }
-
-
-
- [XmlElement("refund_flag")]
- public string RefundFlag { get; set; }
-
-
-
- [XmlElement("status")]
- public string Status { get; set; }
-
-
-
- [XmlElement("template_no")]
- public string TemplateNo { get; set; }
-
-
-
- [XmlElement("ticket_id")]
- public string TicketId { get; set; }
-
-
-
- [XmlElement("ticket_no")]
- public string TicketNo { get; set; }
-
-
-
- [XmlElement("type")]
- public string Type { get; set; }
-
-
-
- [XmlElement("user_id")]
- public string UserId { get; set; }
- }
- }
|