啊鑫
2024-07-09 0552fcc8cb73fc3021e2915129f55a42ed3f20e5
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#region
 
using System;
using System.Data;
using CSFrameworkV5.Common;
using CSFrameworkV5.Core.CodeGenerator;
 
#endregion
 
/*===================================================================
 *   程序说明: tb_sys_LogOperation的ORM模型
 *   作者资料: 孙中吕
 *   创建日期: 2015/01/13 11:12:33
 *   最后修改: 2015/01/13 11:12:33
 *
 *   注: 本代码由代码生成器(Code Generator)自动生成
 *   (此源码文件请放置在Models模块)
 *   版权所有 copyright 2006~2015, C/S框架网(www.cscode.net)
 *===================================================================*/
 
namespace CSFrameworkV5.Models
{
    /// <summary>
    ///     ORM模型, 数据表:sys_LogOperation,由ClassGenerator自动生成
    /// </summary>
    [Serializable]
    [ORM_TableAttribute("sys_LogOperation", "isid", true)]
    public class sys_LogOperation
    {
        public static string __TableName = "sys_LogOperation";
        public static string __KeyName = "isid";
 
        public sys_LogOperation()
        {
            MSG = "";
            Account = "";
            OperationTime = DateTime.Now;
            OperationType = LogTypeSystem.Normal.ToString();
            FormName = "";
            MenuName = "";
            FormCaption = "";
        }
 
        #region 所有字段的局部变量定义
 
        private int F_isid;
        private string F_OperationType;
        private DateTime F_OperationTime;
        private string F_Account;
        private string F_FormName;
        private string F_FormCaption;
        private string F_MenuName;
        private string F_MSG;
 
        #endregion
 
        #region 所有字段名常量
 
        public const string _isid = "isid";
        public const string _OperationType = "OperationType";
        public const string _OperationTime = "OperationTime";
        public const string _Account = "Account";
        public const string _FormName = "FormName";
        public const string _FormCaption = "FormCaption";
        public const string _MenuName = "MenuName";
        public const string _MSG = "MSG";
 
        #endregion
 
        #region 所有字段属性
 
        [ORM_FieldAttribute(DbType.Int32, 4, true, false, true, false, false)]
        public int isid
        {
            get => F_isid;
            set => F_isid = value;
        }
 
        [ORM_FieldAttribute(DbType.String, 40, false, true, false, false,
            false)]
        public string OperationType
        {
            get => F_OperationType;
            set => F_OperationType = value;
        }
 
        [ORM_FieldAttribute(DbType.DateTime, 8, false, true, false, false,
            false)]
        public DateTime OperationTime
        {
            get => F_OperationTime;
            set => F_OperationTime = value;
        }
 
        [ORM_FieldAttribute(DbType.String, 20, false, true, false, false,
            false)]
        public string Account
        {
            get => F_Account;
            set => F_Account = value;
        }
 
        [ORM_FieldAttribute(DbType.String, 50, false, true, false, false,
            false)]
        public string FormName
        {
            get => F_FormName;
            set => F_FormName = value;
        }
 
        [ORM_FieldAttribute(DbType.String, 500, false, true, false, false,
            false)]
        public string FormCaption
        {
            get => F_FormCaption;
            set => F_FormCaption = value;
        }
 
        [ORM_FieldAttribute(DbType.String, 500, false, true, false, false,
            false)]
        public string MenuName
        {
            get => F_MenuName;
            set => F_MenuName = value;
        }
 
        [ORM_FieldAttribute(DbType.String, 500, false, true, false, false,
            false)]
        public string MSG
        {
            get => F_MSG;
            set => F_MSG = value;
        }
 
        #endregion
    }
}