49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayCommerceCityfacilitatorDepositCancelModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayCommerceCityfacilitatorDepositCancelModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 扩展字段,传递撤销的终端信息,原因等
|
|
/// </summary>
|
|
[XmlElement("biz_info_ext")]
|
|
public string BizInfoExt { 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("operate_time")]
|
|
public string OperateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商户的交易号
|
|
/// </summary>
|
|
[XmlElement("out_biz_no")]
|
|
public string OutBizNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 交易号
|
|
/// </summary>
|
|
[XmlElement("trade_no")]
|
|
public string TradeNo { get; set; }
|
|
}
|
|
}
|