schangxiang@126.com
2025-09-19 fc752b66a7976188c4edd5e3fb7ca6bb2822e441
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
namespace wcftest.orm
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    public partial class Sys_MvcTableInfo
    {
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
        public Sys_MvcTableInfo()
        {
            Sys_MvcTableColumn = new HashSet<Sys_MvcTableColumn>();
        }
 
        [Key]
        public int Table_Id { get; set; }
 
        public int ParentId { get; set; }
 
        [StringLength(400)]
        public string CnName { get; set; }
 
        public int? OrderNo { get; set; }
 
        [StringLength(100)]
        public string KeyIDs { get; set; }
 
        [StringLength(50)]
        public string LogicDataKey { get; set; }
 
        public byte? IsReadOnlyDataset { get; set; }
 
        public byte? IsMapDBServer { get; set; }
 
        [StringLength(50)]
        public string DBServer { get; set; }
 
        [StringLength(50)]
        public string DBServerReadOnly { get; set; }
 
        [StringLength(100)]
        public string TableName { get; set; }
 
        [StringLength(50)]
        public string TableView { get; set; }
 
        [StringLength(50)]
        public string FolderName { get; set; }
 
        [StringLength(50)]
        public string Namespace { get; set; }
 
        public byte? DataTableType { get; set; }
 
        [StringLength(500)]
        public string DataTablePath { get; set; }
 
        [StringLength(500)]
        public string DataTableSavePath { get; set; }
 
        public byte? EditorType { get; set; }
 
        [StringLength(500)]
        public string EditorPath { get; set; }
 
        [StringLength(500)]
        public string EditorSavePath { get; set; }
 
        public byte? ViewType { get; set; }
 
        [StringLength(500)]
        public string ViewPath { get; set; }
 
        [StringLength(500)]
        public string ViewSavePath { get; set; }
 
        public byte? DomainModelType { get; set; }
 
        [StringLength(500)]
        public string DomainModelPath { get; set; }
 
        [StringLength(500)]
        public string DomainModelSavePath { get; set; }
 
        public byte? FitColumns { get; set; }
 
        public int? DataGridHeight { get; set; }
 
        public int? MaxHeight { get; set; }
 
        public byte? IsGridOrder { get; set; }
 
        public byte? Striped { get; set; }
 
        public byte? Nowrap { get; set; }
 
        [StringLength(800)]
        public string ManagerTitle { get; set; }
 
        [StringLength(800)]
        public string ManagerSubTitle { get; set; }
 
        [StringLength(50)]
        public string Url { get; set; }
 
        [StringLength(2500)]
        public string LoadMsg { get; set; }
 
        public byte? Pagination { get; set; }
 
        public byte? Rownumbers { get; set; }
 
        public byte? SingleSelect { get; set; }
 
        public int? PageNumber { get; set; }
 
        public int? PageSize { get; set; }
 
        [StringLength(50)]
        public string PageList { get; set; }
 
        [StringLength(500)]
        public string QueryParams { get; set; }
 
        [StringLength(50)]
        public string TreeField { get; set; }
 
        [StringLength(800)]
        public string SortName { get; set; }
 
        [StringLength(50)]
        public string SortOrder { get; set; }
 
        [StringLength(500)]
        public string QueryKeys { get; set; }
 
        public byte? RemoteSort { get; set; }
 
        [StringLength(500)]
        public string EditorTitle { get; set; }
 
        [StringLength(800)]
        public string EditorSubTitle { get; set; }
 
        [StringLength(50)]
        public string AddUrl { get; set; }
 
        [StringLength(50)]
        public string EditUrl { get; set; }
 
        [StringLength(50)]
        public string SaveUrl { get; set; }
 
        [StringLength(50)]
        public string Master_Id { get; set; }
 
        [StringLength(800)]
        public string MasterName { get; set; }
 
        [StringLength(50)]
        public string Detail_Id { get; set; }
 
        [StringLength(800)]
        public string DetailName { get; set; }
 
        public byte? IsEnableView { get; set; }
 
        [StringLength(500)]
        public string ViewerTitle { get; set; }
 
        [StringLength(500)]
        public string ViewerSubTitle { get; set; }
 
        [StringLength(500)]
        public string ViewUrl { get; set; }
 
        [StringLength(50)]
        public string MasterView_Id { get; set; }
 
        [StringLength(800)]
        public string MasterViewName { get; set; }
 
        [StringLength(50)]
        public string DetailView_Id { get; set; }
 
        [StringLength(800)]
        public string DetailViewName { get; set; }
 
        public byte? IsDisplayPager { get; set; }
 
        public byte? IsShowFooter { get; set; }
 
        public byte? IsSumAll { get; set; }
 
        public byte? IsDisplay { get; set; }
 
        public byte? IsVScroll { get; set; }
 
        public byte? IsHScroll { get; set; }
 
        [StringLength(50)]
        public string LinkColumn { get; set; }
 
        public byte? IsReadOnlyDataTable { get; set; }
 
        [StringLength(50)]
        public string CodeRegular { get; set; }
 
        public int? FixedColumnCount { get; set; }
 
        public int? CreateID { get; set; }
 
        [StringLength(50)]
        public string Creator { get; set; }
 
        public DateTime? CreateDate { get; set; }
 
        public int? ModifyID { get; set; }
 
        [StringLength(50)]
        public string Modifier { get; set; }
 
        public DateTime? ModifyDate { get; set; }
 
        [StringLength(50)]
        public string DeleteBy { get; set; }
 
        public byte? IsColumnAuth { get; set; }
 
        [StringLength(50)]
        public string EditorMode { get; set; }
 
        public byte? MobileDataTableType { get; set; }
 
        [StringLength(500)]
        public string MobileDataTablePath { get; set; }
 
        [StringLength(500)]
        public string MobileDataTableSavePath { get; set; }
 
        public byte? MobileEditorType { get; set; }
 
        [StringLength(500)]
        public string MobileEditorPath { get; set; }
 
        [StringLength(500)]
        public string MobileEditorSavePath { get; set; }
 
        public byte? MobileViewType { get; set; }
 
        [StringLength(500)]
        public string MobileViewPath { get; set; }
 
        [StringLength(500)]
        public string MobileViewSavePath { get; set; }
 
        [StringLength(150)]
        public string MobileMainTitle { get; set; }
 
        [StringLength(500)]
        public string MobileMainField { get; set; }
 
        [StringLength(500)]
        public string MobileMainStatusField { get; set; }
 
        [StringLength(500)]
        public string MobileMainRightField { get; set; }
 
        [StringLength(500)]
        public string MobileSubMainField { get; set; }
 
        [StringLength(150)]
        public string MobileEditMainTitle { get; set; }
 
        [StringLength(500)]
        public string MobileEditTitleField { get; set; }
 
        [StringLength(150)]
        public string MobileViewMainTitle { get; set; }
 
        [StringLength(500)]
        public string MobileViewTitleField { get; set; }
 
        [StringLength(500)]
        public string MobileViewMainField { get; set; }
 
        [StringLength(500)]
        public string MobileViewSubField { get; set; }
 
        [StringLength(50)]
        public string Theme { get; set; }
 
        public string DatasetAfterScroll { get; set; }
 
        [StringLength(50)]
        public string MethodName { get; set; }
 
        public string StoredProcedure { get; set; }
 
        public string ExecSQL { get; set; }
 
        public string ExecDTSX { get; set; }
 
        [StringLength(50)]
        public string EditorLayout { get; set; }
 
        [StringLength(50)]
        public string ViewLayout { get; set; }
 
        [StringLength(50)]
        public string TemplatePath { get; set; }
 
        public int? FromRowNo { get; set; }
 
        [StringLength(50)]
        public string FromColumnNo { get; set; }
 
        public byte? IsPhysicsDelete { get; set; }
 
        public byte? IsFlagModify { get; set; }
 
        public string QueryWhere { get; set; }
 
        [StringLength(800)]
        public string Views { get; set; }
 
        [StringLength(800)]
        public string RowStyler { get; set; }
 
        [StringLength(800)]
        public string LoadFilter { get; set; }
 
        [StringLength(800)]
        public string Editors { get; set; }
 
        [StringLength(50)]
        public string PrintTitle { get; set; }
 
        [StringLength(50)]
        public string PrintBarcodeField { get; set; }
 
        [StringLength(800)]
        public string ManagerEnTitle { get; set; }
 
        [StringLength(800)]
        public string ManagerEnSubTitle { get; set; }
 
        [StringLength(500)]
        public string EditorEnTitle { get; set; }
 
        [StringLength(800)]
        public string EditorEnSubTitle { get; set; }
 
        [StringLength(500)]
        public string ViewerEnTitle { get; set; }
 
        [StringLength(500)]
        public string ViewerEnSubTitle { get; set; }
 
        [StringLength(50)]
        public string EnName { get; set; }
 
        [Column(TypeName = "text")]
        public string VueData { get; set; }
 
        [Column(TypeName = "text")]
        public string UserJson { get; set; }
 
        public string ExpandFields { get; set; }
 
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<Sys_MvcTableColumn> Sys_MvcTableColumn { get; set; }
    }
}