using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayCommerceTransportEtcApplySyncModel Data Structure. /// [Serializable] public class AlipayCommerceTransportEtcApplySyncModel : AopObject { /// /// 卡片有效期 /// [XmlElement("card_expiry_date")] public string CardExpiryDate { get; set; } /// /// 卡号 /// [XmlElement("card_no")] public string CardNo { get; set; } /// /// 卡片类型 /// [XmlElement("card_type")] public string CardType { get; set; } /// /// 申请单审核意见 /// [XmlElement("censor_info")] public string CensorInfo { get; set; } /// /// 物流公司编码 /// [XmlElement("delivery_code")] public string DeliveryCode { get; set; } /// /// 物流公司名称 /// [XmlElement("delivery_name")] public string DeliveryName { get; set; } /// /// 物流单号 /// [XmlElement("delivery_no")] public string DeliveryNo { get; set; } /// /// 设备有效期 /// [XmlElement("device_expiry_date")] public string DeviceExpiryDate { get; set; } /// /// 设备编号 /// [XmlElement("device_no")] public string DeviceNo { get; set; } /// /// 设备状态 0:未发货 1:已发货 2:运输中 3:已签收 4:已二发 5:已激活 6:退货中 7:已退货 8:换货中 9:设备已注销 10:设备注销失败 11:已发卡 12:已发签 /// [XmlElement("device_status")] public string DeviceStatus { get; set; } /// /// 设备类型 /// [XmlElement("device_type")] public string DeviceType { get; set; } /// /// 支付宝生成的申请单id /// [XmlElement("order_id")] public string OrderId { get; set; } /// /// 0:未提交; 1:审核中; 2:驳回(可重新提交); 3:不通过(不可重新提交); 4:通过; 5:撤销; /// [XmlElement("order_status")] public string OrderStatus { get; set; } /// /// 最近更新时间 /// [XmlElement("order_update_time")] public string OrderUpdateTime { get; set; } /// /// 比如某种业务标准外部订单号,比如交易外部订单号,代表商户端自己订单号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 1: 二次激活成功 /// [XmlElement("reactive_status")] public string ReactiveStatus { get; set; } } }