forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPayNeedModel.cs
More file actions
34 lines (33 loc) · 866 Bytes
/
PayNeedModel.cs
File metadata and controls
34 lines (33 loc) · 866 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
namespace Blog.Core.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; }
}
}