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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#region
 
using System.Data;
using CSFrameworkV5.Core.CodeGenerator;
 
#endregion
 
namespace CSFrameworkV5.Models
{
    /*==========================================
     *   程序说明: tb_DataSet的ORM模型
     *   作者姓名: C/S框架网 www.csframework.com
     *   创建日期: 2014/03/19 04:39:25
     *   最后修改: 2014/03/19 04:39:25
     *
     *   注: 本代码由ClassGenerator自动生成
     *   版权所有 C/S框架网 www.csframework.com
     *==========================================*/
 
    /// <summary>
    ///     ORM模型, 数据表:tb_DataSet,由ClassGenerator自动生成
    /// </summary>
    [ORM_TableAttribute("tb_DataSet", "DataSetID", false)]
    public sealed class tb_DataSet
    {
        public static string __TableName = "tb_DataSet";
 
        public static string __KeyName = "DataSetID";
 
        [ORM_FieldAttribute(DbType.Int32, 4, false, false, false, false, false)]
        public static string isid = "isid";
 
        [ORM_FieldAttribute(DbType.String, 20, false, true, true, false, false)]
        public static string DataSetID = "DataSetID";
 
        [ORM_FieldAttribute(DbType.String, 80, false, true, false, false,
            false)]
        public static string DataSetName = "DataSetName";
 
        [ORM_FieldAttribute(DbType.String, 10, false, true, false, false,
            false)]
        public static string DatabaseType = "DatabaseType";
 
        [ORM_FieldAttribute(DbType.String, 50, false, true, false, false,
            false)]
        public static string RemoteServerIP = "RemoteServerIP";
 
        [ORM_FieldAttribute(DbType.Int32, 4, false, true, false, false, false)]
        public static string RemoteServerPort = "RemoteServerPort";
 
        [ORM_FieldAttribute(DbType.String, 50, false, true, false, false,
            false)]
        public static string LocalServerIP = "LocalServerIP";
 
        [ORM_FieldAttribute(DbType.Int32, 4, false, true, false, false, false)]
        public static string LocalServerPort = "LocalServerPort";
 
        [ORM_FieldAttribute(DbType.String, 250, false, true, false, false,
            false)]
        public static string DBName = "DBName";
 
        [ORM_FieldAttribute(DbType.String, 50, false, true, false, false,
            false)]
        public static string DBUserName = "DBUserName";
 
        [ORM_FieldAttribute(DbType.String, 250, false, true, false, false,
            false)]
        public static string DBUserPassword = "DBUserPassword";
 
        [ORM_FieldAttribute(DbType.String, 500, false, true, false, false,
            false)]
        public static string Remark = "Remark";
 
        [ORM_FieldAttribute(DbType.String, 1, false, true, false, false, false)]
        public static string PermissionInherited = "PermissionInherited";
 
        [ORM_FieldAttribute(DbType.String, 1, false, true, false, false, false)]
        public static string IsVisible = "IsVisible";
    }
}