forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPayResultModel.cs
More file actions
53 lines (53 loc) · 1.4 KB
/
PayResultModel.cs
File metadata and controls
53 lines (53 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
namespace Blog.Core.Model.ViewModels
{
/// <summary>
/// 支付结果dto
/// </summary>
public class PayResultModel
{
/// <summary>
/// 支付结果
/// Y:成功
/// N:失败
/// U:不确定
/// Q:待轮询
/// </summary>
public string RESULT { get; set; }
/// <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 WAITTIME { get; set; }
/// <summary>
/// 全局事件跟踪号-建行交易流水号
/// </summary>
public string TRACEID { get; set; }
/// <summary>
/// 错误码
/// </summary>
public string ERRCODE { get; set; }
/// <summary>
/// 错误信息
/// </summary>
public string ERRMSG { get; set; }
/// <summary>
/// 验证签名-防止伪造攻击
/// </summary>
public string SIGN { get; set; }
}
}