SysI18nTable.cs
4.32 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
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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 数据表国际化
/// </summary>
[Table("sys_i18n_table")]
public partial class SysI18nTable : SysEntity
{
public SysI18nTable()
{
}
/// <summary>
/// 表编号
/// </summary>
[Column("tableno")]
public string Tableno { get; set; }
/// <summary>
/// 栏位类型
/// </summary>
[Column("type")]
public string Type { get; set; }
/// <summary>
/// 字段名
/// </summary>
[Column("field")]
public string T_Field { get; set; }
/// <summary>
/// 排序号
/// </summary>
[Column("seqno")]
public int? Seqno { get; set; }
/// <summary>
/// 英文栏位名
/// </summary>
[Column("title_us")]
public string TitleUs { get; set; }
/// <summary>
/// 中文栏位名
/// </summary>
[Column("title_cn")]
public string TitleCn { get; set; }
/// <summary>
/// 栏位宽
/// </summary>
[Column("width")]
public int? T_Width { get; set; }
/// <summary>
/// 最小宽度
/// </summary>
[Column("minwidth")]
public int? Minwidth { get; set; }
/// <summary>
/// 固定宽度
/// </summary>
[Column("unresize")]
public bool? Unresize { get; set; }
/// <summary>
/// 隐藏
/// </summary>
[Column("hide")]
public bool? Hide { get; set; }
/// <summary>
/// 固定列
/// </summary>
[Column("fixed")]
public bool? Fixed { get; set; }
/// <summary>
/// 可排序
/// </summary>
[Column("sort")]
public bool? T_Sort { get; set; }
/// <summary>
/// 英文模板
/// </summary>
[Column("templet_us")]
public string TempletUs { get; set; }
/// <summary>
/// 中文模板
/// </summary>
[Column("templet_cn")]
public string TempletCn { get; set; }
/// <summary>
/// 栏位事件
/// </summary>
[Column("event")]
public string T_Event { get; set; }
/// <summary>
/// 可查询
/// </summary>
[Column("queryenable")]
public bool? Queryenable { get; set; }
/// <summary>
/// 可编辑
/// </summary>
[Column("editenable")]
public bool? Editenable { get; set; }
/// <summary>
/// 查询控件类型
/// </summary>
[Column("qlayfilter")]
public string Qlayfilter { get; set; }
/// <summary>
/// 编辑控件类型
/// </summary>
[Column("elayfilter")]
public string Elayfilter { get; set; }
/// <summary>
/// 修改必填项
/// </summary>
[Column("erequired")]
public bool? Erequired { get; set; }
/// <summary>
/// 文本框最大输入长度
/// </summary>
[Column("maxlength")]
public int? Maxlength { get; set; }
/// <summary>
/// switch控件默认样式
/// </summary>
[Column("switchchecked")]
public bool? Switchchecked { get; set; }
/// <summary>
/// switch控件文本英文
/// </summary>
[Column("switchtext_us")]
public string SwitchtextUs { get; set; }
/// <summary>
/// switch控件默认值英文
/// </summary>
[Column("switchvalue_us")]
public string SwitchvalueUs { get; set; }
/// <summary>
/// switch控件文本中文
/// </summary>
[Column("switchtext_cn")]
public string SwitchtextCn { get; set; }
/// <summary>
/// switch控件默认值中文
/// </summary>
[Column("switchvalue_cn")]
public string SwitchvalueCn { get; set; }
/// <summary>
/// 数值型类型(整形/小数)
/// </summary>
[Column("valuetype")]
public string Valuetype { get; set; }
/// <summary>
/// 工具栏列
/// </summary>
[Column("toolbar_cn")]
public string ToolBarCn { get; set; }
/// <summary>
/// 英文工具栏列
/// </summary>
[Column("toolbar_us")]
public string ToolBarUs { get; set; }
}
}