using System; using SqlSugar; using System.Linq; using System.ComponentModel; using System.Collections.Generic; namespace Tiger.Model { /// /// 实体:系统参数 /// [Description("Primary:ID")] [Serializable] [SugarTable("V_SYS_PARAM")] public class V_SYS_PARAM : DbEntityNoGhost, iViewEntity { #region 构造函数 /// /// 实体:系统参数 /// public V_SYS_PARAM() { } #endregion #region 公共属性 /// /// 参数代码 /// public string PARAM_CODE { get; set; } /// /// 参数名称 /// public string PARAM_NAME { get; set; } /// /// 参数描述 /// public string PARAM_DESC { get; set; } /// /// 参数排序 /// public int PARAM_SEQ { get; set; } /// /// 参数组代码 /// public string PRMG_CODE { get; set; } /// /// 参数组类型 /// public string PRMG_TYPE { get; set; } /// /// 参数值 /// public string PARAM_VALUE { get; set; } /// /// 参数数据1 /// public string DATA_1 { get; set; } /// /// 参数数据2 /// public string DATA_2 { get; set; } /// /// 参数数据3 /// public string DATA_3 { get; set; } /// /// 参数数据4 /// public string DATA_4 { get; set; } /// /// 参数数据5 /// public string DATA_5 { get; set; } #endregion #region 公共静态只读属性 /// /// 表名 表原信息描述: V_SYS_PARAM /// public static readonly string s_TableName = "V_SYS_PARAM"; /// /// 信息描述: ID /// public static readonly string s_ID = "V_SYS_PARAM┋ID┋System.String"; /// /// 信息描述: PARAM_CODE /// public static readonly string s_PARAM_CODE = "V_SYS_PARAM┋PARAM_CODE┋System.String"; /// /// 信息描述: PARAM_NAME /// public static readonly string s_PARAM_NAME = "V_SYS_PARAM┋PARAM_NAME┋System.String"; /// /// 信息描述: PARAM_DESC /// public static readonly string s_PARAM_DESC = "V_SYS_PARAM┋PARAM_DESC┋System.String"; /// /// 信息描述: PRMG_CODE /// public static readonly string s_PRMG_CODE = "V_SYS_PARAM┋PRMG_CODE┋System.String"; /// /// 信息描述: PRMG_TYPE /// public static readonly string s_PRMG_TYPE = "V_SYS_PARAM┋PRMG_TYPE┋System.String"; /// /// 信息描述: PARAM_VALUE /// public static readonly string s_PARAM_VALUE = "V_SYS_PARAM┋PARAM_VALUE┋System.String"; /// /// 信息描述: DATA_1 /// public static readonly string s_DATA_1 = "V_SYS_PARAM┋DATA_1┋System.String"; /// /// 信息描述: DATA_2 /// public static readonly string s_DATA_2 = "V_SYS_PARAM┋DATA_2┋System.String"; /// /// 信息描述: DATA_3 /// public static readonly string s_DATA_3 = "V_SYS_PARAM┋DATA_3┋System.String"; /// /// 信息描述: DATA_4 /// public static readonly string s_DATA_4 = "V_SYS_PARAM┋DATA_4┋System.String"; /// /// 信息描述: DATA_5 /// public static readonly string s_DATA_5 = "V_SYS_PARAM┋DATA_5┋System.String"; /// /// 信息描述: CREATE_USER /// public static readonly string s_CREATE_USER = "V_SYS_PARAM┋CREATE_USER┋System.String"; /// /// 信息描述: CREATE_TIME /// public static readonly string s_CREATE_TIME = "V_SYS_PARAM┋CREATE_TIME┋System.DateTime"; /// /// 信息描述: UPDATE_USER /// public static readonly string s_UPDATE_USER = "V_SYS_PARAM┋UPDATE_USER┋System.String"; /// /// 信息描述: UPDATE_TIME /// public static readonly string s_UPDATE_TIME = "V_SYS_PARAM┋UPDATE_TIME┋System.DateTime"; /// /// 信息描述: PARAM_ORDER /// public static readonly string s_PARAM_ORDER = "V_SYS_PARAM┋PARAM_SEQ┋System.Int32"; #endregion #region 公共方法 #endregion }//endClass }