Files
Api/DouyinApi.Model/ViewModels/PayReturnResultModel.cs
2025-11-04 21:09:16 +08:00

40 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 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; }
}
}