using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_MSC_PHY_SPLINE2所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2016-11-22 /// public class ComMscPhySpline2Entity { /// /// 取样码 /// 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 = ""; /// /// 试样组+'('+方向+'_'+温度+'_'+尺寸+'_'+')'的组合描述 /// private string sampleKeyDesc = ""; /// /// 项目代码_方向 /// private string itemCodeF = ""; /// /// 项目代码_尺寸 /// private string itemCodeC = ""; /// /// 项目代码_温度 /// private string itemCodeW = ""; /// /// 标准代码(试验标准) /// private string stdCodeTest = ""; /// /// 标准名称(试验标准) /// private string stdNameTest = ""; private string itemNameC = ""; private string itemNameW = ""; private string itemNameF = ""; /// /// 取样码 /// [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; } } /// /// 试样组+方向+温度+尺寸的代码组合 /// [Description("试样组+方向+温度+尺寸的代码组合")] [Nullable(false)] [DataLength(23)] [JsonProperty("sampleKey")] public string SampleKey { get { return sampleKey; } set { sampleKey = value; } } /// /// 试样组+'('+方向+'_'+温度+'_'+尺寸+'_'+')'的组合描述 /// [Description("试样组+'('+方向+'_'+温度+'_'+尺寸+'_'+')'的组合描述")] [Nullable(true)] [DataLength(200)] [JsonProperty("sampleKeyDesc")] public string SampleKeyDesc { get { return sampleKeyDesc; } set { sampleKeyDesc = value; } } /// /// 项目代码_方向 /// [Description("项目代码_方向")] [Nullable(true)] [DataLength(5)] [JsonProperty("itemCodeF")] public string ItemCodeF { get { return itemCodeF; } set { itemCodeF = value; } } /// /// 项目代码_尺寸 /// [Description("项目代码_尺寸")] [Nullable(true)] [DataLength(5)] [JsonProperty("itemCodeC")] public string ItemCodeC { get { return itemCodeC; } set { itemCodeC = value; } } /// /// 项目代码_温度 /// [Description("项目代码_温度")] [Nullable(true)] [DataLength(5)] [JsonProperty("itemCodeW")] public string ItemCodeW { get { return itemCodeW; } set { itemCodeW = value; } } /// /// 标准代码(试验标准) /// [Description("标准代码(试验标准)")] [Nullable(false)] [DataLength(300)] [JsonProperty("stdCodeTest")] public string StdCodeTest { get { return stdCodeTest; } set { stdCodeTest = value; } } /// /// 标准名称(试验标准) /// [Description("标准名称(试验标准)")] [Nullable(false)] [DataLength(3000)] [JsonProperty("stdNameTest")] public string StdNameTest { get { return stdNameTest; } set { stdNameTest = value; } } public string ItemNameC { get { return itemNameC; } set { itemNameC = value; } } public string ItemNameW { get { return itemNameW; } set { itemNameW = value; } } public string ItemNameF { get { return itemNameF; } set { itemNameF = value; } } } }