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
| #region
|
| using System.Data;
| using CSFrameworkV5.Core.CodeGenerator;
|
| #endregion
|
| namespace CSFrameworkV5.Models
| {
| /// <summary>
| /// 用户表结构
| /// </summary>
| [ORM_TableAttribute("tb_MyUser", "Account", true)]
| public class tb_MyUser
| {
| public static string __TableName = "tb_MyUser";
|
| public static string __KeyName = "Account";
|
| [ORM_FieldAttribute(DbType.Int32, 4, false, false, false, false, false)]
| public static string isid = "isid";
|
| [ORM_FieldAttribute(DbType.String, 30, false, true, true, false, false)]
| public static string Account = "Account";
|
| [ORM_FieldAttribute(DbType.String, 30, false, true, false, false,
| false)]
| public static string NovellAccount = "NovellAccount";
|
| [ORM_FieldAttribute(DbType.String, 100, false, true, false, false,
| false)]
| public static string DomainName = "DomainName";
|
| [ORM_FieldAttribute(DbType.String, 20, false, true, false, false,
| false)]
| public static string UserName = "UserName";
|
| [ORM_FieldAttribute(DbType.String, 100, false, true, false, false,
| false)]
| public static string Address = "Address";
|
| [ORM_FieldAttribute(DbType.String, 200, false, true, false, false,
| false)]
| public static string Remark = "Remark";
|
| [ORM_FieldAttribute(DbType.String, 50, false, true, false, false,
| false)]
| public static string Tel = "Tel";
|
| [ORM_FieldAttribute(DbType.String, 40, false, true, false, false,
| false)]
| public static string Email = "Email";
|
| [ORM_FieldAttribute(DbType.String, 100, false, true, false, false,
| false)]
| public static string Password = "Password";
|
| [ORM_FieldAttribute(DbType.DateTime, 4, false, true, false, false,
| false)]
| public static string LastLoginTime = "LastLoginTime";
|
| [ORM_FieldAttribute(DbType.DateTime, 4, false, true, false, false,
| false)]
| public static string LastLogoutTime = "LastLogoutTime";
|
| [ORM_FieldAttribute(DbType.String, 1, false, true, false, false, false)]
| public static string IsLocked = "IsLocked";
|
| [ORM_FieldAttribute(DbType.DateTime, 4, false, true, false, false,
| false)]
| public static string CreateTime = "CreateTime";
|
| [ORM_FieldAttribute(DbType.String, 1, false, true, false, false, false)]
| public static string FlagAdmin = "FlagAdmin";
|
| [ORM_FieldAttribute(DbType.String, 1, false, true, false, false, false)]
| public static string FlagOnline = "FlagOnline";
|
| [ORM_FieldAttribute(DbType.Int32, 4, false, true, false, false, false)]
| public static string LoginCounter = "LoginCounter";
|
| [ORM_FieldAttribute(DbType.String, 250, false, true, false, false,
| false)]
| public static string DataSets = "DataSets";
|
| [ORM_FieldAttribute(DbType.Binary, 2500000, false, true, false, false,
| false)]
| public static string PhotoImg = "PhotoImg";
|
| [ORM_FieldAttribute(DbType.Binary, 500000, false, true, false, false,
| false)]
| public static string SignImg = "SignImg";
|
| [ORM_FieldAttribute(DbType.String, 50, false, true, false, false,
| false)]
| public static string WorkerID = "WorkerID";
|
| [ORM_FieldAttribute(DbType.String, 50, false, true, false, false,
| false)]
| public static string Org1 = "Org1";
|
| [ORM_FieldAttribute(DbType.String, 50, false, true, false, false,
| false)]
| public static string Org2 = "Org2";
| }
| }
|
|