using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEcoMycarParkingDeviceorderSyncModel Data Structure. /// [Serializable] public class AlipayEcoMycarParkingDeviceorderSyncModel : AopObject { /// /// 停车场ID /// [XmlElement("alipay_parking_id")] public string AlipayParkingId { get; set; } /// /// 支付宝IoT平台分配的供应商序列号 关键信息,支付宝强校验 /// [XmlElement("alipay_supplier_sn")] public string AlipaySupplierSn { get; set; } /// /// 申请人支付宝账号 /// [XmlElement("applicant_alipay_account")] public string ApplicantAlipayAccount { get; set; } /// /// 申请人姓名 /// [XmlElement("applicant_name")] public string ApplicantName { get; set; } /// /// 申请人联系方式 /// [XmlElement("applicant_phone")] public string ApplicantPhone { get; set; } /// /// 变更到当前状态的业务时间,注意非数据回流时间 /// [XmlElement("biz_time")] public string BizTime { get; set; } /// /// 岗亭数量 /// [XmlElement("booth_num")] public string BoothNum { get; set; } /// /// 申请设备数量 /// [XmlElement("device_num")] public string DeviceNum { get; set; } /// /// 申请设备类型。键信息,设备型号需在支付宝IoT平台已注册。支付宝根据厂商供应商sn+厂商设备型号进行强校验 /// [XmlElement("device_type")] public string DeviceType { get; set; } /// /// 机具订单ID /// [XmlElement("order_id")] public string OrderId { get; set; } /// /// 订单状态: 1. APPLYING 申请中 2. AUDITING 审核中 3. AUDIT_REJECTED 审核未通过 4. WAIT_DELIVERY 待发货 5. DELIVERED 待收货 6. RECEIVED 已收货 7. CANCELLED 已撤销 order_state=APPLYING时,除了remark外的其余字段也需传入 /// [XmlElement("order_state")] public string OrderState { get; set; } /// /// 车场负责人姓名 /// [XmlElement("pklot_principal_name")] public string PklotPrincipalName { get; set; } /// /// 车场负责人联系方式 /// [XmlElement("pklot_principal_phone")] public string PklotPrincipalPhone { get; set; } /// /// 收货地址 /// [XmlElement("receiver_address")] public string ReceiverAddress { get; set; } /// /// 收货人姓名 /// [XmlElement("receiver_name")] public string ReceiverName { get; set; } /// /// 收货人联系方式 /// [XmlElement("receiver_phone")] public string ReceiverPhone { get; set; } /// /// 备注说明 /// [XmlElement("remarks")] public string Remarks { get; set; } } }