You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/ViewModels/PayRefundNeedModel.cs

21 lines
502 B

namespace Tiobon.Core.Model.ViewModels
{
/// <summary>
/// 订单参数
/// </summary>
public class PayRefundNeedModel
{
/// <summary>
/// 订单号
/// </summary>
public string ORDER { get; set; }
/// <summary>
/// 退款金额
/// </summary>
public string MONEY { get; set; }
/// <summary>
/// 退款流水号(可选)
/// </summary>
public string REFUND_CODE { get; set; }
}
}