using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_SPLINE_C所对应的实体类(生成工具:代码生成工具1.0.0.0) /// 作者:Chenxi-PC2 时间:2016-04-14 /// public class ComBaseSplineCEntity { /// /// 试样码子索引号 /// private string tic = ""; /// /// 试样索引号(COM_BASE_SPLINE) /// private string eic = ""; /// /// 取样码 /// private string phyCodeMin = ""; /// /// 取样码描述 /// private string phyNameMin = ""; /// /// 标准代码(国家标准/协议标准) /// private string stdCode = ""; /// /// 标准名称(国家标准/协议标准) /// private string stdName = ""; /// /// 适用外径下限值 /// private string minD = ""; /// /// 适用外径上限值 /// private string maxD = ""; /// /// 适用壁厚下限值 /// private string minH = ""; /// /// 适用壁厚上限值 /// private string maxH = ""; /// /// 适用外径下限值符号 /// private string minDSign = ""; /// /// 适用外径上限值符号 /// private string maxDSign = ""; /// /// 适用壁厚下限值符号 /// private string minHSign = ""; /// /// 适用壁厚上限值符号 /// private string maxHSign = ""; /// /// 创建人 /// 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 steelCodes = ""; private string steelDescs = ""; private string productCodes = ""; private string productDescs = ""; private string formula = ""; private string minF = ""; private string minFSign = ""; private string maxF = ""; private string maxFSign = ""; private string modelCodes = ""; private string modelDescs = ""; /// /// 试样码子索引号 /// [Description("试样码子索引号")] [Nullable(false)] [DataLength(8)] [JsonProperty("tic")] public string Tic { get { return tic; } set { tic = value; } } /// /// 试样索引号(COM_BASE_SPLINE) /// [Description("试样索引号")] [Nullable(false)] [DataLength(8)] [JsonProperty("eic")] public string Eic { get { return eic; } set { eic = value; } } /// /// 取样码 /// [Description("取样码")] [Nullable(false)] [DataLength(5)] [JsonProperty("phyCodeMin")] public string PhyCodeMin { get { return phyCodeMin; } set { phyCodeMin = value; } } /// /// 取样码描述 /// [Description("取样码描述")] [Nullable(false)] [DataLength(100)] [JsonProperty("phyNameMin")] public string PhyNameMin { get { return phyNameMin; } set { phyNameMin = value; } } /// /// 标准代码(国家标准/协议标准) /// [Description("标准代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("stdCode")] public string StdCode { get { return stdCode; } set { stdCode = value; } } /// /// 标准名称(国家标准/协议标准) /// [Description("产品标准")] [Nullable(true)] [DataLength(200)] [JsonProperty("stdName")] public string StdName { get { return stdName; } set { stdName = value; } } /// /// 适用外径下限值 /// [Description("下限值")] [Nullable(true)] [DataLength(10)] [JsonProperty("minD")] public string MinD { get { return minD; } set { minD = value; } } /// /// 适用外径上限值 /// [Description("上限值")] [Nullable(true)] [DataLength(10)] [JsonProperty("maxD")] public string MaxD { get { return maxD; } set { maxD = value; } } /// /// 适用壁厚下限值 /// [Description("下限值")] [Nullable(true)] [DataLength(10)] [JsonProperty("minH")] public string MinH { get { return minH; } set { minH = value; } } /// /// 适用壁厚上限值 /// [Description("上限值")] [Nullable(true)] [DataLength(10)] [JsonProperty("maxH")] public string MaxH { get { return maxH; } set { maxH = value; } } /// /// 适用外径下限值符号 /// [Description("符号")] [Nullable(true)] [DataLength(10)] [JsonProperty("minDSign")] public string MinDSign { get { return minDSign; } set { minDSign = value; } } /// /// 适用外径上限值符号 /// [Description("符号")] [Nullable(true)] [DataLength(10)] [JsonProperty("maxDSign")] public string MaxDSign { get { return maxDSign; } set { maxDSign = value; } } /// /// 适用壁厚下限值符号 /// [Description("符号")] [Nullable(true)] [DataLength(10)] [JsonProperty("minHSign")] public string MinHSign { get { return minHSign; } set { minHSign = value; } } /// /// 适用壁厚上限值符号 /// [Description("符号")] [Nullable(true)] [DataLength(10)] [JsonProperty("maxHSign")] public string MaxHSign { get { return maxHSign; } set { maxHSign = 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(500)] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } [Description("钢级集合")] [JsonProperty("steelCodes")] public string SteelCodes { get { return steelCodes; } set { steelCodes = value; } } [Description("钢级集合")] [JsonProperty("steelDescs")] public string SteelDescs { get { return steelDescs; } set { steelDescs = value; } } [Description("品名集合")] [JsonProperty("productCodes")] public string ProductCodes { get { return productCodes; } set { productCodes = value; } } [Description("品名集合")] [JsonProperty("productDescs")] public string ProductDescs { get { return productDescs; } set { productDescs = value; } } [Description("公式")] [JsonProperty("formula")] public string Formula { get { return formula; } set { formula = value; } } [Description("下限值")] [JsonProperty("minF")] public string MinF { get { return minF; } set { minF = value; } } [Description("下限符号")] [JsonProperty("minFSign")] public string MinFSign { get { return minFSign; } set { minFSign = value; } } [Description("上限值")] [JsonProperty("maxF")] public string MaxF { get { return maxF; } set { maxF = value; } } [Description("上限符号")] [JsonProperty("maxFSign")] public string MaxFSign { get { return maxFSign; } set { maxFSign = value; } } /// /// 扣型代码集合 /// [Description("扣型代码集合")] [JsonProperty("modelCodes")] public string ModelCodes { get { return modelCodes; } set { modelCodes = value; } } /// /// 扣型描述集合 /// [Description("扣型描述集合")] [JsonProperty("ModelDescs")] public string ModelDescs { get { return modelDescs; } set { modelDescs = value; } } } }