using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOfflineProviderEquipmentAuthRemoveModel Data Structure. /// [Serializable] public class AlipayOfflineProviderEquipmentAuthRemoveModel : AopObject { /// /// 机具编号 /// [XmlElement("device_id")] public string DeviceId { get; set; } /// /// 机具类型 /// [XmlElement("device_type")] public string DeviceType { get; set; } /// /// 扩展信息,传json格式的字符串,包含auth_alipay_card_no =授权的商户支付宝卡号 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 机具厂商PID /// [XmlElement("merchant_pid")] public string MerchantPid { get; set; } /// /// 操作人名称 /// [XmlElement("operator")] public string Operator { get; set; } /// /// 操作人ID /// [XmlElement("operator_id")] public string OperatorId { get; set; } } }