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,39 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DouyinApi.Model.ViewModels
{
/// <summary>
/// 返回支付结果
/// </summary>
public class PayReturnResultModel
{
/// <summary>
/// 发起的订单ID
/// </summary>
public string ORDERID { get; set; }
/// <summary>
/// 返回支付的金额
/// </summary>
public string AMOUNT { get; set; }
/// <summary>
/// 返回支付的类型 1龙支付 2微信 3支付宝 4银联
/// </summary>
public string QRCODETYPE { get; set; }
/// <summary>
/// 返回建行的流水号
/// </summary>
public string TRACEID { get; set; }
/// <summary>
/// 错误代码
/// </summary>
public string ERRCODE { get; set; }
/// <summary>
/// 错误信息
/// </summary>
public string ERRMSG { get; set; }
}
}