schangxiang@126.com
2024-12-02 5ffe3e968652b17a2b7de39d809a099a05adadf4
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
namespace iWareSql.WmsDBModel
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    [Table("SysCodeGenConfig")]
    public partial class SysCodeGenConfig
    {
        [DatabaseGenerated(DatabaseGeneratedOption.None)]
        public long Id { get; set; }
 
        public long CodeGenId { get; set; }
 
        [Required]
        [StringLength(128)]
        public string ColumnName { get; set; }
 
        [Required]
        [StringLength(128)]
        public string PropertyName { get; set; }
 
        public int ColumnLength { get; set; }
 
        [StringLength(128)]
        public string ColumnComment { get; set; }
 
        [StringLength(64)]
        public string NetType { get; set; }
 
        [StringLength(64)]
        public string EffectType { get; set; }
 
        [StringLength(64)]
        public string FkEntityName { get; set; }
 
        [StringLength(128)]
        public string FkTableName { get; set; }
 
        [StringLength(64)]
        public string FkColumnName { get; set; }
 
        [StringLength(64)]
        public string FkSetValueColumnName { get; set; }
 
        [StringLength(64)]
        public string FkColumnNetType { get; set; }
 
        [StringLength(64)]
        public string DictTypeCode { get; set; }
 
        [StringLength(8)]
        public string WhetherRetract { get; set; }
 
        [StringLength(8)]
        public string WhetherRequired { get; set; }
 
        [StringLength(8)]
        public string WhetherSortable { get; set; }
 
        [StringLength(8)]
        public string QueryWhether { get; set; }
 
        [StringLength(16)]
        public string QueryType { get; set; }
 
        [StringLength(16)]
        public string RepCheckType { get; set; }
 
        [StringLength(8)]
        public string WhetherTable { get; set; }
 
        [StringLength(8)]
        public string WhetherKeyQuery { get; set; }
 
        [StringLength(8)]
        public string WhetherAddUpdate { get; set; }
 
        [StringLength(8)]
        public string ColumnKey { get; set; }
 
        [StringLength(64)]
        public string DataType { get; set; }
 
        [StringLength(8)]
        public string WhetherCommon { get; set; }
 
        public string DisplayColumn { get; set; }
 
        [StringLength(128)]
        public string ValueColumn { get; set; }
 
        [StringLength(128)]
        public string PidColumn { get; set; }
 
        public int OrderNo { get; set; }
 
        public DateTime? CreateTime { get; set; }
 
        public DateTime? UpdateTime { get; set; }
 
        public long? CreateUserId { get; set; }
 
        [StringLength(64)]
        public string CreateUserName { get; set; }
 
        public long? UpdateUserId { get; set; }
 
        [StringLength(64)]
        public string UpdateUserName { get; set; }
 
        public bool IsDelete { get; set; }
    }
}