#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
|
}
|
}
|