NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceTransportEtcA...

109 lines
3.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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