using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_INFO所对应的实体类(生成工具:代码生成工具1.0) /// 作者:tgcx-test 时间:2016-06-04 /// public class ComBaseInfoEntity { /// /// 基础分类编码 /// private string basecode = ""; /// /// 基础分类名称 /// private string basename = ""; /// /// 快速检索码 /// private string sortcode = ""; /// /// 可编辑标志(1:可编辑,0:不可编辑) /// private string isvisible = ""; /// /// 拼音助记码 /// private string mnemonicCode = ""; /// /// 序号(排序用) /// private decimal? seq = null; /// /// 是否允许增加子类(1:允许,0:不允许) /// private string flag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 备注 /// private string memo = ""; /// /// 钢种系数(sortcode=4002专用,前台界面不显示) /// private decimal? coefficient = null; /// /// 基础分类编码 /// [Description("编码")] [Nullable(false)] [DataLength(20)] [JsonProperty("basecode")] public string Basecode { get { return basecode; } set { basecode = value; } } /// /// 基础分类名称 /// [Description("探伤级别")] [Nullable(true)] [DataLength(100)] [JsonProperty("basename")] public string Basename { get { return basename; } set { basename = value; } } /// /// 快速检索码 /// [Description("快速检索码")] [Nullable(true)] [DataLength(20)] [JsonProperty("sortcode")] public string Sortcode { get { return sortcode; } set { sortcode = value; } } /// /// 可编辑标志(1:可编辑,0:不可编辑) /// [Description("可编辑标志(1:可编辑,0:不可编辑)")] [Nullable(true)] [DataLength(1)] [JsonProperty("isvisible")] public string Isvisible { get { return isvisible; } set { isvisible = value; } } /// /// 拼音助记码 /// [Description("拼音助记码")] [Nullable(true)] [DataLength(100)] [JsonProperty("mnemonicCode")] public string MnemonicCode { get { return mnemonicCode; } set { mnemonicCode = value; } } /// /// 序号(排序用) /// [Description("序号(排序用)")] [Nullable(true)] [DataLength(22)] [JsonProperty("seq")] public decimal? Seq { get { return seq; } set { seq = value; } } /// /// 是否允许增加子类(1:允许,0:不允许) /// [Description("是否允许增加子类(1:允许,0:不允许)")] [Nullable(true)] [DataLength(1)] [JsonProperty("flag")] public string Flag { get { return flag; } set { flag = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] [JsonProperty("createName")] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] [JsonProperty("createTime")] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] [JsonProperty("updateName")] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] [JsonProperty("updateTime")] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] [JsonProperty("deleteName")] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] [JsonProperty("deleteTime")] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] [JsonProperty("validflag")] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } /// /// 钢种系数(sortcode=4002专用,前台界面不显示) /// [Description("钢种系数(sortcode=4002专用,前台界面不显示)")] [Nullable(true)] [DataLength(4)] [JsonProperty("coefficient")] public decimal? Coefficient { get { return coefficient; } set { coefficient = value; } } } }