using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayOfflineProviderEquipmentAuthQuerybypageResponse. /// public class AlipayOfflineProviderEquipmentAuthQuerybypageResponse : AopResponse { /// /// 机具解绑按照条件分页查询返回信息 /// [JsonProperty("equipmentauthremovequerybypagelist")] public List Equipmentauthremovequerybypagelist { get; set; } /// /// 总记录数 /// [JsonProperty("total")] public long Total { get; set; } } }