schangxiang@126.com
2024-04-23 f47411fb53aeee0c7bd514cbc841f9030349f448
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
namespace Admin.NET.Application
{
    /// <summary>
    /// 数据库表列
    /// </summary>
    public class TableColumnOuput
    {
        /// <summary>
        /// 字段名
        /// </summary>
        public string ColumnName { get; set; }
 
        /// <summary>
        /// 是否可为NULL 【Editby shaocx,2024-04-20】
        /// </summary>
        public bool IsNullable { get; set; }
 
        /// <summary>
        /// 数据库中类型
        /// </summary>
        public string DataType { get; set; }
 
        /// <summary>
        /// .NET字段类型
        /// </summary>
        public string NetType { get; set; }
 
        /// <summary>
        /// 字段描述
        /// </summary>
        public string ColumnComment { get; set; }
 
        /// <summary>
        /// 主外键
        /// </summary>
        public string ColumnKey { get; set; }
 
 
        /// <summary>
        /// 页面列显示最小宽度
        /// </summary>
        public string ShowTitleMinWidth { get; set; }
    }
}