schangxiang@126.com
2025-09-10 3d43ffa3152110b7823f9fa6320c08a6ae02358a
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
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_MvcTableColumn
    {
        [Key]
        public int ColumnID { get; set; }
 
        public int? Table_Id { get; set; }
 
        [StringLength(100)]
        public string TableView { get; set; }
 
        [StringLength(255)]
        public string ColumnComment { get; set; }
 
        [StringLength(255)]
        public string ColumnEnComment { get; set; }
 
        [StringLength(100)]
        public string ColumnName { get; set; }
 
        public int? OrderNo { get; set; }
 
        public int? GridOrderNo { get; set; }
 
        public int? DropDown_Id { get; set; }
 
        public byte? IsManagerDataSet { get; set; }
 
        public byte? IsManagerTable { get; set; }
 
        public string FieldAttribute { get; set; }
 
        public int? ColumnWidth { get; set; }
 
        [StringLength(50)]
        public string Align { get; set; }
 
        public byte Sortable { get; set; }
 
        public byte Resizable { get; set; }
 
        public int Rowspan { get; set; }
 
        public int Colspan { get; set; }
 
        public string DataTableOnRefresh { get; set; }
 
        public byte? IsReadDataset { get; set; }
 
        public int? SearchRowNo { get; set; }
 
        public byte? IsSearchColumn { get; set; }
 
        public byte? Nullable { get; set; }
 
        public byte? SearchType { get; set; }
 
        public byte? IsEditDataSet { get; set; }
 
        public int? EditRowNo { get; set; }
 
        [StringLength(500)]
        public string EditNameAttribute { get; set; }
 
        [StringLength(500)]
        public string EditValueAttribute { get; set; }
 
        [StringLength(4000)]
        public string EditType { get; set; }
 
        [StringLength(2000)]
        public string ColumnCheck { get; set; }
 
        [StringLength(2000)]
        public string ColumnWarning { get; set; }
 
        [StringLength(200)]
        public string ColumnHelp { get; set; }
 
        [StringLength(500)]
        public string DefaultValue { get; set; }
 
        public byte? IsEnableView { get; set; }
 
        public byte? IsViewDataSet { get; set; }
 
        public byte? ViewRowNo { get; set; }
 
        public byte? ViewType { get; set; }
 
        [StringLength(500)]
        public string ViewNameAttribute { get; set; }
 
        [StringLength(500)]
        public string ViewValueAttribute { get; set; }
 
        public byte? IsBatchReplace { get; set; }
 
        public byte? IsReadTable { get; set; }
 
        public byte? IsSum { get; set; }
 
        [StringLength(50)]
        public string DataType { get; set; }
 
        public int? DataTypeLength { get; set; }
 
        [StringLength(50)]
        public string Formatter { get; set; }
 
        public string EditOnRefresh { get; set; }
 
        public string ViewOnRefresh { get; set; }
 
        public string OnScript { get; set; }
 
        public string ColumnAuth { get; set; }
 
        [StringLength(50)]
        public string GroupBy { get; set; }
 
        public int? Group_Id { get; set; }
 
        public string ColumnAlias { get; set; }
 
        [StringLength(4000)]
        public string RelationTable { get; set; }
 
        public int? PrintOrderNo { get; set; }
 
        public int? PrintWidth { 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; }
 
        public byte? IsMobileListDataSet { get; set; }
 
        public int? MobileListRowNo { get; set; }
 
        public byte? IsMobileEditDataSet { get; set; }
 
        public int? MobileEditRowNo { get; set; }
 
        public byte? IsMobileViewDataSet { get; set; }
 
        public int? MobileViewRowNo { get; set; }
 
        public string MobileOnRefresh { get; set; }
 
        public string MobileEditOnRefresh { get; set; }
 
        public string MobileViewOnRefresh { get; set; }
 
        [StringLength(4000)]
        public string SearchEditType { get; set; }
 
        public string ExpandFields { get; set; }
 
        public virtual Sys_MvcTableInfo Sys_MvcTableInfo { get; set; }
    }
}