43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayEcoMycarParkingOrderRefundModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayEcoMycarParkingOrderRefundModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 代扣时返回的支付宝支付交易流水号,系统唯一
|
||
/// </summary>
|
||
[XmlElement("order_no")]
|
||
public string OrderNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// ISV代扣订单号,ISV唯一
|
||
/// </summary>
|
||
[XmlElement("out_order_no")]
|
||
public string OutOrderNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部申请退款请求流水,ISV唯一
|
||
/// </summary>
|
||
[XmlElement("out_refund_no")]
|
||
public string OutRefundNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 退款金额,保留小数点后两位
|
||
/// </summary>
|
||
[XmlElement("refund_fee")]
|
||
public string RefundFee { get; set; }
|
||
|
||
/// <summary>
|
||
/// 退款理由
|
||
/// </summary>
|
||
[XmlElement("refund_reason")]
|
||
public string RefundReason { get; set; }
|
||
}
|
||
}
|