using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.SaleOrder { /// /// 数据库表SLM_ORD_DESIGN_MSC_CFT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-16 /// public class SlmOrdDesignMscCftEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 冶金规范码 /// private string msc = ""; /// /// 产线号 /// private string mscPline = ""; /// /// 全程工序顺序号 /// private decimal? backlogSeq = null; /// /// 工序代码 /// private string processCdoe = ""; /// /// 工序名称 /// private string processDesc = ""; /// /// 二级工序代码 /// private string processCdoeC = ""; /// /// 二级工序名称 /// private string processDescC = ""; /// /// 工序点代码 /// private string stationCode = ""; /// /// 工序点名称 /// private string stationDesc = ""; /// /// 外径最小值(mm) /// private decimal? minD = null; /// /// 外径最大值(mm) /// private decimal? maxD = null; /// /// 壁厚最小值(mm) /// private decimal? minH = null; /// /// 壁厚最大值(mm) /// private decimal? maxH = null; /// /// 扣型代码(集合) /// private string modelCode = ""; /// /// 扣型描述(集合) /// private string modelDesc = ""; /// /// 接箍规格代码(接箍专用,与外径壁厚只允许存在其一) /// private string specJg = ""; /// /// 接箍规格描述 /// private string specJgDesc = ""; /// /// 适用钢种索引号(COM_MSC_STD_CRAFT_R_GRADE) /// private string gradeSeq = ""; /// /// 工艺参数代码(主项) /// private string craftitemCdoe = ""; /// /// 工艺参数名称(主项) /// private string craftitemDesc = ""; /// /// 同一个工艺参数维护序列号 /// private decimal? allowCount = null; /// /// 工艺参数标准值最小(主项) /// private string minValue = ""; /// /// 工艺参数标准值最大(主项) /// private string maxValue = ""; /// /// 工艺参数代码(从项1) /// private string craftitemCdoe1 = ""; /// /// 工艺参数名称(从项1) /// private string craftitemDesc1 = ""; /// /// 工艺参数标准值最小(从项1) /// private string minValue1 = ""; /// /// 工艺参数标准值最大(从项1) /// private string maxValue1 = ""; /// /// 工艺参数代码(从项2) /// private string craftitemCdoe2 = ""; /// /// 工艺参数名称(从项2) /// private string craftitemDesc2 = ""; /// /// 工艺参数标准值最小((从项2) /// private string minValue2 = ""; /// /// 工艺参数标准值最大((从项2) /// private string maxValue2 = ""; /// /// 工艺参数代码((从项3) /// private string craftitemCdoe3 = ""; /// /// 工艺参数名称((从项3) /// private string craftitemDesc3 = ""; /// /// 工艺参数标准值最小(从项3) /// private string minValue3 = ""; /// /// 工艺参数标准值最大(从项3) /// private string maxValue3 = ""; /// /// 工艺参数代码(从项4) /// private string craftitemCdoe4 = ""; /// /// 工艺参数名称(从项4) /// private string craftitemDesc4 = ""; /// /// 工艺参数标准值最小(从项4) /// private string minValue4 = ""; /// /// 工艺参数标准值最大(从项4) /// private string maxValue4 = ""; /// /// 创建人 /// 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 = ""; /// /// DESGIN_KEY /// [Description("DESGIN_KEY")] [Nullable(false)] [DataLength(40)] public string DesginKey { get { return desginKey; } set { desginKey = value; } } /// /// 冶金规范码 /// [Description("冶金规范码")] [Nullable(false)] [DataLength(20)] public string Msc { get { return msc; } set { msc = value; } } /// /// 产线号 /// [Description("产线号")] [Nullable(false)] [DataLength(6)] public string MscPline { get { return mscPline; } set { mscPline = value; } } /// /// 全程工序顺序号 /// [Description("全程工序顺序号")] [Nullable(false)] [DataLength(22)] public decimal? BacklogSeq { get { return backlogSeq; } set { backlogSeq = value; } } /// /// 工序代码 /// [Description("工序代码")] [Nullable(false)] [DataLength(8)] public string ProcessCdoe { get { return processCdoe; } set { processCdoe = value; } } /// /// 工序名称 /// [Description("工序名称")] [Nullable(true)] [DataLength(50)] public string ProcessDesc { get { return processDesc; } set { processDesc = value; } } /// /// 二级工序代码 /// [Description("二级工序代码")] [Nullable(true)] [DataLength(8)] public string ProcessCdoeC { get { return processCdoeC; } set { processCdoeC = value; } } /// /// 二级工序名称 /// [Description("二级工序名称")] [Nullable(true)] [DataLength(50)] public string ProcessDescC { get { return processDescC; } set { processDescC = value; } } /// /// 工序点代码 /// [Description("工序点代码")] [Nullable(false)] [DataLength(10)] public string StationCode { get { return stationCode; } set { stationCode = value; } } /// /// 工序点名称 /// [Description("工序点名称")] [Nullable(true)] [DataLength(50)] public string StationDesc { get { return stationDesc; } set { stationDesc = value; } } /// /// 外径最小值(mm) /// [Description("最小值")] [Nullable(true)] [DataLength(6)] public decimal? MinD { get { return minD; } set { minD = value; } } /// /// 外径最大值(mm) /// [Description("最大值")] [Nullable(true)] [DataLength(6)] public decimal? MaxD { get { return maxD; } set { maxD = value; } } /// /// 壁厚最小值(mm) /// [Description("最小值")] [Nullable(true)] [DataLength(6)] public decimal? MinH { get { return minH; } set { minH = value; } } /// /// 壁厚最大值(mm) /// [Description("最大值")] [Nullable(true)] [DataLength(6)] public decimal? MaxH { get { return maxH; } set { maxH = value; } } /// /// 扣型代码(集合) /// [Description("扣型代码(集合)")] [Nullable(true)] [DataLength(800)] public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 扣型描述(集合) /// [Description("扣型描述(集合)")] [Nullable(true)] [DataLength(2000)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 接箍规格代码(接箍专用,与外径壁厚只允许存在其一) /// [Description("接箍规格代码")] [Nullable(true)] [DataLength(20)] public string SpecJg { get { return specJg; } set { specJg = value; } } /// /// 接箍规格描述 /// [Description("接箍规格描述")] [Nullable(true)] [DataLength(100)] public string SpecJgDesc { get { return specJgDesc; } set { specJgDesc = value; } } /// /// 适用钢种索引号(COM_MSC_STD_CRAFT_R_GRADE) /// [Description("适用钢种索引号")] [Nullable(true)] [DataLength(32)] public string GradeSeq { get { return gradeSeq; } set { gradeSeq = value; } } /// /// 工艺参数代码(主项) /// [Description("工艺参数代码")] [Nullable(false)] [DataLength(10)] public string CraftitemCdoe { get { return craftitemCdoe; } set { craftitemCdoe = value; } } /// /// 工艺参数名称(主项) /// [Description("名称")] [Nullable(true)] [DataLength(50)] public string CraftitemDesc { get { return craftitemDesc; } set { craftitemDesc = value; } } /// /// 同一个工艺参数维护序列号 /// [Description("维护序列号")] [Nullable(false)] [DataLength(22)] public decimal? AllowCount { get { return allowCount; } set { allowCount = value; } } /// /// 工艺参数标准值最小(主项) /// [Description("标准值最小")] [Nullable(true)] [DataLength(200)] public string MinValue { get { return minValue; } set { minValue = value; } } /// /// 工艺参数标准值最大(主项) /// [Description("标准值最大")] [Nullable(true)] [DataLength(20)] public string MaxValue { get { return maxValue; } set { maxValue = value; } } /// /// 工艺参数代码(从项1) /// [Description("代码(从项1)")] [Nullable(true)] [DataLength(10)] public string CraftitemCdoe1 { get { return craftitemCdoe1; } set { craftitemCdoe1 = value; } } /// /// 工艺参数名称(从项1) /// [Description("名称")] [Nullable(true)] [DataLength(50)] public string CraftitemDesc1 { get { return craftitemDesc1; } set { craftitemDesc1 = value; } } /// /// 工艺参数标准值最小(从项1) /// [Description("标准值最小")] [Nullable(true)] [DataLength(200)] public string MinValue1 { get { return minValue1; } set { minValue1 = value; } } /// /// 工艺参数标准值最大(从项1) /// [Description("标准值最大")] [Nullable(true)] [DataLength(20)] public string MaxValue1 { get { return maxValue1; } set { maxValue1 = value; } } /// /// 工艺参数代码(从项2) /// [Description("代码")] [Nullable(true)] [DataLength(10)] public string CraftitemCdoe2 { get { return craftitemCdoe2; } set { craftitemCdoe2 = value; } } /// /// 工艺参数名称(从项2) /// [Description("名称")] [Nullable(true)] [DataLength(50)] public string CraftitemDesc2 { get { return craftitemDesc2; } set { craftitemDesc2 = value; } } /// /// 工艺参数标准值最小((从项2) /// [Description("标准值最小")] [Nullable(true)] [DataLength(200)] public string MinValue2 { get { return minValue2; } set { minValue2 = value; } } /// /// 工艺参数标准值最大((从项2) /// [Description("标准值最大")] [Nullable(true)] [DataLength(20)] public string MaxValue2 { get { return maxValue2; } set { maxValue2 = value; } } /// /// 工艺参数代码((从项3) /// [Description("代码")] [Nullable(true)] [DataLength(10)] public string CraftitemCdoe3 { get { return craftitemCdoe3; } set { craftitemCdoe3 = value; } } /// /// 工艺参数名称((从项3) /// [Description("名称")] [Nullable(true)] [DataLength(50)] public string CraftitemDesc3 { get { return craftitemDesc3; } set { craftitemDesc3 = value; } } /// /// 工艺参数标准值最小(从项3) /// [Description("标准值最小")] [Nullable(true)] [DataLength(200)] public string MinValue3 { get { return minValue3; } set { minValue3 = value; } } /// /// 工艺参数标准值最大(从项3) /// [Description("标准值最大")] [Nullable(true)] [DataLength(20)] public string MaxValue3 { get { return maxValue3; } set { maxValue3 = value; } } /// /// 工艺参数代码(从项4) /// [Description("代码")] [Nullable(true)] [DataLength(10)] public string CraftitemCdoe4 { get { return craftitemCdoe4; } set { craftitemCdoe4 = value; } } /// /// 工艺参数名称(从项4) /// [Description("名称")] [Nullable(true)] [DataLength(50)] public string CraftitemDesc4 { get { return craftitemDesc4; } set { craftitemDesc4 = value; } } /// /// 工艺参数标准值最小(从项4) /// [Description("标准值最小")] [Nullable(true)] [DataLength(200)] public string MinValue4 { get { return minValue4; } set { minValue4 = value; } } /// /// 工艺参数标准值最大(从项4) /// [Description("标准值最大")] [Nullable(true)] [DataLength(20)] public string MaxValue4 { get { return maxValue4; } set { maxValue4 = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(500)] public string Memo { get { return memo; } set { memo = value; } } } }