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,34 @@
namespace DouyinApi.Model.ViewModels
{
/// <summary>
/// 退款参数
/// </summary>
public class PayNeedModel
{
/// <summary>
/// 订单ID
/// </summary>
public string ORDERID { get; set; }
/// <summary>
/// 商品名称
/// </summary>
public string PROINFO { get; set; }
/// <summary>
/// 支付金额(小数点最多两位)
/// </summary>
public string AMOUNT { get; set; }
/// <summary>
/// 二维码/条码信息
/// </summary>
public string QRCODE { get; set; }
/// <summary>
/// 备注信息1
/// </summary>
public string REMARK1 { get; set; }
/// <summary>
/// 备注信息2
/// </summary>
public string REMARK2 { get; set; }
}
}