Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoMycarParkingOrderRefundModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

42 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarParkingOrderRefundModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarParkingOrderRefundModel : AopObject
{
/// <summary>
/// 代扣时返回的支付宝支付交易流水号,系统唯一
/// </summary>
[JsonProperty("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// ISV代扣订单号ISV唯一
/// </summary>
[JsonProperty("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 外部申请退款请求流水ISV唯一
/// </summary>
[JsonProperty("out_refund_no")]
public string OutRefundNo { get; set; }
/// <summary>
/// 退款金额,保留小数点后两位
/// </summary>
[JsonProperty("refund_fee")]
public string RefundFee { get; set; }
/// <summary>
/// 退款理由
/// </summary>
[JsonProperty("refund_reason")]
public string RefundReason { get; set; }
}
}