using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOfflineProviderEquipmentAuthQuerybypageResponse. /// public class AlipayOfflineProviderEquipmentAuthQuerybypageResponse : AopResponse { /// /// 机具解绑按照条件分页查询返回信息 /// [XmlArray("equipmentauthremovequerybypagelist")] [XmlArrayItem("equipment_auth_remove_query_bypage_d_t_o")] public List Equipmentauthremovequerybypagelist { get; set; } /// /// 总记录数 /// [XmlElement("total")] public long Total { get; set; } } }