This commit is contained in:
cjd
2025-11-04 21:09:16 +08:00
parent 8260e293c7
commit bb90a020dc
592 changed files with 61749 additions and 27 deletions

View File

@@ -0,0 +1,21 @@
namespace DouyinApi.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; }
}
}