qinchulong
2025-03-29 039a4a5433e7f80adc88b491b549e5d9486e4f9a
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
using WIDESEA_Entity.SystemModels;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Collections.Generic;
 
namespace WIDESEA_Entity.DomainModels
{
    [Table("Sys_TableInfo")]
    [EntityAttribute(DetailTable = new Type[] { typeof(Sys_TableColumn) })]
    public class Sys_TableInfo : BaseEntity
    {
        [Key]
        [Column(TypeName = "int")]
        public int Table_Id { get; set; }
        [Editable(true)]
        [Column(TypeName = "int")]
        public int? ParentId { get; set; }
 
        [Editable(true)]
        public string TableName { get; set; }
        [Editable(true)]
        public string TableTrueName { get; set; }
        [Editable(true)]
        public string ColumnCNName { get; set; }
 
 
        public string Namespace { get; set; }
 
        [Editable(true)]
        public string FolderName { get; set; }
 
        [Editable(true)]
        public string DataTableType { get; set; }
 
        [Editable(true)]
        public string EditorType { get; set; }
        [Editable(true)]
        [Column(TypeName = "int")]
        public int? OrderNo { get; set; }
        [Editable(true)]
        public string UploadField { get; set; }
        [Editable(true)]
        public int? UploadMaxCount { get; set; }
        [Editable(true)]
        public string RichText { get; set; }
        [Editable(true)]
        public string ExpressField { get; set; }
        [Editable(true)]
        public string DBServer { get; set; }
        [Editable(true)]
        public string SortName { get; set; }
        [Editable(true)]
        public string DetailCnName { get; set; }
 
 
        [Editable(true)]
        public string DetailName { get; set; }
 
        [Editable(true)]
        [Column(TypeName = "int")]
        public int? Enable { get; set; }
 
 
        [Editable(true)]
        public string CnName { get; set; }
 
        [ForeignKey("Table_Id")]
        public List<Sys_TableColumn> TableColumns { get; set; }
 
    }
}