1
yhj
2024-07-24 5e5d945e91568b973faa27d8ab0bcef99fc4a6c5
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
#region
 
using System.Data;
using CSFrameworkV5.Core.CodeGenerator;
 
#endregion
 
namespace CSFrameworkV5.Models
{
/*===================================================================
 *   程序说明: 的ORM模型
 *   作者资料: 孙中吕
 *   创建日期: 2020-10-22 06:18:19
 *   最后修改: 2020-10-22 06:18:19
 *
 *   注: 本文件由代码生成器(Code Generator)自动生成。
 *   (此源码文件请放置在 YourProject.Models 模块)
 *   版权所有 Copyright 2006~2020, C/S框架网(www.cscode.net)
 *===================================================================*/
 
    /// <summary>
    ///     数据表:sys_Language的ORM模型(ORM Model),由Code Generator自动生成。
    /// </summary>
    [ORM_TableAttribute("sys_Language", "ObjectID", false)]
    public class sys_Language
    {
        public static readonly string __TableName = "sys_Language";
 
        public static readonly string __KeyName = "ObjectID";
 
        [ORM_FieldAttribute(DbType.Int32, 4, true, false, false, false, false)]
        public static readonly string isid = "isid";
 
        [ORM_FieldAttribute(DbType.String, 400, false, true, true, false,
            false)]
        public static readonly string ObjectID = "ObjectID";
 
        [ORM_FieldAttribute(DbType.String, 20, false, true, true, false, false)]
        public static readonly string ItemType = "ItemType";
 
        [ORM_FieldAttribute(DbType.String, 1000, false, true, false, false,
            false)]
        public static readonly string CHS = "CHS";
 
        [ORM_FieldAttribute(DbType.String, 1000, false, true, false, false,
            false)]
        public static readonly string CHT = "CHT";
 
        [ORM_FieldAttribute(DbType.String, 500, false, true, false, false,
            false)]
        public static readonly string ENG = "ENG";
 
        [ORM_FieldAttribute(DbType.String, 500, false, true, false, false,
            false)]
        public static readonly string VN = "VN";
 
        [ORM_FieldAttribute(DbType.DateTime, 8, false, true, false, false,
            false)]
        public static readonly string CreateTime = "CreateTime";
    }
}