using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOfflineProviderEquipmentAuthQuerybypageModel Data Structure. /// [Serializable] public class AlipayOfflineProviderEquipmentAuthQuerybypageModel : AopObject { /// /// 解绑起始时间 /// [XmlElement("begin_time")] public string BeginTime { get; set; } /// /// 机具类型 /// [XmlElement("device_type")] public string DeviceType { get; set; } /// /// 解绑截止时间 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 扩展信息,传json格式的字符串,包含operator=操作人;operator_id =操作人ID /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 机具厂商PID /// [XmlElement("merchant_pid")] public string MerchantPid { get; set; } /// /// 当前页,***注意页数从1开始*** /// [XmlElement("page_num")] public string PageNum { get; set; } /// /// 每页容量:最小1,最大100 /// [XmlElement("page_size")] public string PageSize { get; set; } } }