using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceAlideviceinfoOfflinecodeCreateModel Data Structure. /// [Serializable] public class AlipayCommerceAlideviceinfoOfflinecodeCreateModel : AopObject { /// /// 绑定标识 /// [XmlElement("biz_tag")] public string BizTag { get; set; } /// /// 支付宝统一sdk获取的设备id /// [XmlElement("biz_tid")] public string BizTid { get; set; } /// /// 业务场景,由支付宝定义 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 机具物料id,由支付宝分配 /// [XmlElement("item_id")] public string ItemId { get; set; } /// /// 绑定商户pid /// [XmlElement("merchant_pid")] public string MerchantPid { get; set; } /// /// 销售产品码 /// [XmlElement("product_code")] public string ProductCode { get; set; } /// /// 离线支付协议版本,与支付sdk协议版本保持一致 /// [XmlElement("protocol_version")] public string ProtocolVersion { get; set; } /// /// 设备sn号 /// [XmlElement("sn")] public string Sn { get; set; } /// /// 设备供应商id,由支付宝分配 /// [XmlElement("supplier_id")] public string SupplierId { get; set; } } }