forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPayRefundReturnModel.cs
More file actions
37 lines (37 loc) · 975 Bytes
/
PayRefundReturnModel.cs
File metadata and controls
37 lines (37 loc) · 975 Bytes
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
namespace Blog.Core.Model.ViewModels
{
/// <summary>
/// 退款返回消息
/// </summary>
public class PayRefundReturnModel
{
/// <summary>
/// 序列号
/// </summary>
public string REQUEST_SN { get; set; }
/// <summary>
/// 商户号
/// </summary>
public string CUST_ID { get; set; }
/// <summary>
/// 交易码
/// </summary>
public string TX_CODE { get; set; }
/// <summary>
/// 返回码
/// </summary>
public string RETURN_CODE { get; set; }
/// <summary>
/// 返回码说明
/// </summary>
public string RETURN_MSG { get; set; }
/// <summary>
/// 语言
/// </summary>
public string LANGUAGE { get; set; }
/// <summary>
/// 订单信息
/// </summary>
public PayRefundReturnOrderInfoModel TX_INFO { get; set; }
}
}