forked from tengge1/DTcms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder_config.cs
98 lines (96 loc) · 2.62 KB
/
order_config.cs
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
using System;
using System.Collections.Generic;
using System.Text;
namespace DTcms.Model
{
/// <summary>
/// 订单配置信息
/// </summary>
[Serializable]
public class orderconfig
{
public orderconfig()
{ }
private int _anonymous = 0;
private int _taxtype = 1;
private decimal _taxamount = 0;
private int _confirmmsg = 0;
private string _confirmcallindex = "";
private int _expressmsg = 0;
private string _expresscallindex = "";
private int _completemsg = 0;
private string _completecallindex = "";
/// <summary>
/// 开启匿名购物0否1是
/// </summary>
public int anonymous
{
get { return _anonymous; }
set { _anonymous = value; }
}
/// <summary>
/// 税费类型1百分比2固定金额
/// </summary>
public int taxtype
{
get { return _taxtype; }
set { _taxtype = value; }
}
/// <summary>
/// 百分比取值范围:0-100,固定金额单位为“元”
/// </summary>
public decimal taxamount
{
get { return _taxamount; }
set { _taxamount = value; }
}
/// <summary>
/// 订单确认通知0关闭1短信2邮件
/// </summary>
public int confirmmsg
{
get { return _confirmmsg; }
set { _confirmmsg = value; }
}
/// <summary>
/// 通知模板别名
/// </summary>
public string confirmcallindex
{
get { return _confirmcallindex; }
set { _confirmcallindex = value; }
}
/// <summary>
/// 订单发货通知0关闭1短信2邮件
/// </summary>
public int expressmsg
{
get { return _expressmsg; }
set { _expressmsg = value; }
}
/// <summary>
/// 通知模板别名
/// </summary>
public string expresscallindex
{
get { return _expresscallindex; }
set { _expresscallindex = value; }
}
/// <summary>
/// 订单完成通知0关闭1短信2邮件
/// </summary>
public int completemsg
{
get { return _completemsg; }
set { _completemsg = value; }
}
/// <summary>
/// 通知模板别名
/// </summary>
public string completecallindex
{
get { return _completecallindex; }
set { _completecallindex = value; }
}
}
}