forked from tengge1/DTcms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticle_attribute_field.cs
187 lines (186 loc) · 4.81 KB
/
article_attribute_field.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
using System;
namespace DTcms.Model
{
/// <summary>
/// 扩展字段表
/// </summary>
[Serializable]
public partial class article_attribute_field
{
public article_attribute_field()
{ }
#region Model
private int _id;
private string _name;
private string _title = string.Empty;
private string _control_type;
private string _data_type;
private int _data_length = 0;
private int _data_place = 0;
private string _item_option = string.Empty;
private string _default_value = string.Empty;
private int _is_required = 0;
private int _is_password = 0;
private int _is_html = 0;
private int _editor_type = 0;
private string _valid_tip_msg = string.Empty;
private string _valid_error_msg = string.Empty;
private string _valid_pattern = string.Empty;
private int _sort_id = 99;
private int _is_sys = 0;
private int _is_lock = 0;
/// <summary>
/// 自增ID
/// </summary>
public int id
{
set { _id = value; }
get { return _id; }
}
/// <summary>
/// 列名
/// </summary>
public string name
{
set { _name = value; }
get { return _name; }
}
/// <summary>
/// 标题
/// </summary>
public string title
{
set { _title = value; }
get { return _title; }
}
/// <summary>
/// 控件类型
/// </summary>
public string control_type
{
set { _control_type = value; }
get { return _control_type; }
}
/// <summary>
/// 字段类型
/// </summary>
public string data_type
{
set { _data_type = value; }
get { return _data_type; }
}
/// <summary>
/// 字段长度
/// </summary>
public int data_length
{
set { _data_length = value; }
get { return _data_length; }
}
/// <summary>
/// 小数点位数
/// </summary>
public int data_place
{
set { _data_place = value; }
get { return _data_place; }
}
/// <summary>
/// 选项列表
/// </summary>
public string item_option
{
set { _item_option = value; }
get { return _item_option; }
}
/// <summary>
/// 默认值
/// </summary>
public string default_value
{
set { _default_value = value; }
get { return _default_value; }
}
/// <summary>
/// 是否必填0非必填1必填
/// </summary>
public int is_required
{
set { _is_required = value; }
get { return _is_required; }
}
/// <summary>
/// 是否密码框
/// </summary>
public int is_password
{
set { _is_password = value; }
get { return _is_password; }
}
/// <summary>
/// 是否允许HTML
/// </summary>
public int is_html
{
set { _is_html = value; }
get { return _is_html; }
}
/// <summary>
/// 编辑器类型0标准型1简洁型
/// </summary>
public int editor_type
{
set { _editor_type = value; }
get { return _editor_type; }
}
/// <summary>
/// 验证提示信息
/// </summary>
public string valid_tip_msg
{
set { _valid_tip_msg = value; }
get { return _valid_tip_msg; }
}
/// <summary>
/// 验证失败提示信息
/// </summary>
public string valid_error_msg
{
set { _valid_error_msg = value; }
get { return _valid_error_msg; }
}
/// <summary>
/// 验证正则表达式
/// </summary>
public string valid_pattern
{
set { _valid_pattern = value; }
get { return _valid_pattern; }
}
/// <summary>
/// 排序数字
/// </summary>
public int sort_id
{
set { _sort_id = value; }
get { return _sort_id; }
}
/// <summary>
/// 系统默认
/// </summary>
public int is_sys
{
set { _is_sys = value; }
get { return _is_sys; }
}
/// <summary>
/// 状态0正常1禁用
/// </summary>
public int is_lock
{
set { _is_lock = value; }
get { return _is_lock; }
}
#endregion
}
}