using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// EquipmentAuthRemoveQueryBypageDTO Data Structure. /// [Serializable] public class EquipmentAuthRemoveQueryBypageDTO : AopObject { /// /// 机具编号 /// [JsonProperty("device_id")] public string DeviceId { get; set; } /// /// 解绑时间 /// [JsonProperty("unbind_time")] public string UnbindTime { get; set; } } }