using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_MSC_PHY_SPLINE所对应的实体类(生成工具:代码生成工具1.0.0.0) /// 作者:Chenxi-PC2 时间:2016-04-21 /// public class ComMscPhySplineEntity { /// /// 材质标准索引号 /// private string pic = ""; /// /// 取样码 /// private string phyCodeMin = ""; /// /// 取样码描述 /// private string phyNameMin = ""; /// /// 试样索引号(COM_BASE_SPLINE) /// private string eic = ""; /// /// 创建人 /// 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 = ""; private string sampleKey = ""; [JsonProperty("sampleKey")] public string SampleKey { get { return sampleKey; } set { sampleKey = value; } } private string sampleKeyDesc = ""; [JsonProperty("sampleKeyDesc")] public string SampleKeyDesc { get { return sampleKeyDesc; } set { sampleKeyDesc = value; } } private string itemCodeF = ""; [JsonProperty("itemCodeF")] public string ItemCodeF { get { return itemCodeF; } set { itemCodeF = value; } } private string itemCodeC = ""; [JsonProperty("itemCodeC")] public string ItemCodeC { get { return itemCodeC; } set { itemCodeC = value; } } private string itemCodeW = ""; [JsonProperty("itemCodeW")] public string ItemCodeW { get { return itemCodeW; } set { itemCodeW = value; } } private string itemNameF = ""; [JsonProperty("itemNameF")] public string ItemNameF { get { return itemNameF; } set { itemNameF = value; } } private string itemNameW = ""; [JsonProperty("itemNameW")] public string ItemNameW { get { return itemNameW; } set { itemNameW = value; } } private string itemNameC = ""; [JsonProperty("itemNameC")] public string ItemNameC { get { return itemNameC; } set { itemNameC = value; } } /// /// 材质标准索引号 /// [Description("材质标准索引号")] [Nullable(false)] [DataLength(20)] [JsonProperty("pic")] public string Pic { get { return pic; } set { pic = value; } } /// /// 取样码 /// [Description("取样码")] [Nullable(false)] [DataLength(5)] [JsonProperty("phyCodeMin")] public string PhyCodeMin { get { return phyCodeMin; } set { phyCodeMin = value; } } /// /// 取样码描述 /// [Description("取样码描述")] [Nullable(true)] [DataLength(100)] [JsonProperty("phyNameMin")] public string PhyNameMin { get { return phyNameMin; } set { phyNameMin = value; } } /// /// 试样索引号(COM_BASE_SPLINE) /// [Description("试样索引号(COM_BASE_SPLINE)")] [Nullable(false)] [DataLength(8)] [JsonProperty("eic")] public string Eic { get { return eic; } set { eic = 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("有效标志(1:有效,0:无效)")] [Nullable(false)] [DataLength(1)] [JsonProperty("validflag")] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(500)] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } } }