using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiRetailInstanceQueryModel Data Structure. /// [Serializable] public class KoubeiRetailInstanceQueryModel : AopObject { /// /// 券或者电子DM单(VOUCHER、DM),如果字段为空返回VOUCHER类型 /// [XmlElement("instance_type")] public string InstanceType { get; set; } /// /// 当前页码,默认1 /// [XmlElement("page_num")] public long PageNum { get; set; } /// /// 一次请求返回的数据量,1~100整数,默认10 /// [XmlElement("page_size")] public long PageSize { get; set; } } }