67 lines
1.7 KiB
C#
67 lines
1.7 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayOpenOperationBizfeeAftechRefundModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayOpenOperationBizfeeAftechRefundModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 系统/应用名称
|
|
/// </summary>
|
|
[XmlElement("app_name")]
|
|
public string AppName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 退费币种 币种数字编码。
|
|
/// </summary>
|
|
[XmlElement("currency")]
|
|
public string Currency { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用订单号
|
|
/// </summary>
|
|
[XmlElement("fee_order_no")]
|
|
public string FeeOrderNo { 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>
|
|
/// 退费金额 单位元,最多两位小数。
|
|
/// </summary>
|
|
[XmlElement("refund_amount")]
|
|
public string RefundAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 退费流水号
|
|
/// </summary>
|
|
[XmlElement("refund_no")]
|
|
public string RefundNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 租户Id
|
|
/// </summary>
|
|
[XmlElement("tnt_inst_id")]
|
|
public string TntInstId { get; set; }
|
|
}
|
|
}
|