43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenOperationBizfeeAftechCancelModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayOpenOperationBizfeeAftechCancelModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 系统/应用名称
|
|
/// </summary>
|
|
[XmlElement("app_name")]
|
|
public string AppName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 业务发生时间
|
|
/// </summary>
|
|
[XmlElement("gmt_service")]
|
|
public string GmtService { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单流水号
|
|
/// </summary>
|
|
[XmlElement("order_no")]
|
|
public string OrderNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 外部业务流水号
|
|
/// </summary>
|
|
[XmlElement("out_biz_no")]
|
|
public string OutBizNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 租户Id
|
|
/// </summary>
|
|
[XmlElement("tnt_inst_id")]
|
|
public string TntInstId { get; set; }
|
|
}
|
|
}
|