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 { /// /// 数据库表CRAFT_FILE_APPLY所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-12-18 /// public class CraftFileApplyEntity { /// /// 工艺文件号 /// private string craftNo = ""; /// /// 工艺文件版本号(工艺文件号相同时,取最大的版本号+1) /// private string craftNoV = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 产品码 /// private string msc = ""; /// /// 产品描述 /// private string mscDesc = ""; /// /// 适用壁厚最小值 /// private string minH = ""; /// /// 适用壁厚最大值 /// private string maxH = ""; /// /// 适用外径最小值 /// private string minD = ""; /// /// 适用外径最大值 /// private string maxD = ""; /// /// 产品代码(适用变径规格) /// private string specCode = ""; /// /// 扣型集合代码 /// private string modelCode = ""; /// /// 扣型集合描述 /// private string modelDesc = ""; /// /// ID号 /// private string craftId = ""; private string craftKey = ""; /// /// 工艺文件号 /// [Description("工艺文件号")] [Nullable(false)] [DataLength(50)] public string CraftNo { get { return craftNo; } set { craftNo = value; } } /// /// 工艺文件版本号(工艺文件号相同时,取最大的版本号+1) /// [Description("版本号")] [Nullable(false)] [DataLength(50)] public string CraftNoV { get { return craftNoV; } set { craftNoV = 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(false)] [DataLength(20)] public string Msc { get { return msc; } set { msc = value; } } /// /// 产品描述 /// [Description("冶金规范描述")] [Nullable(true)] [DataLength(500)] public string MscDesc { get { return mscDesc; } set { mscDesc = value; } } /// /// 适用壁厚最小值 /// [Description("最小值")] [Nullable(true)] [DataLength(10)] public string MinH { get { return minH; } set { minH = value; } } /// /// 适用壁厚最大值 /// [Description("最大值")] [Nullable(true)] [DataLength(10)] public string MaxH { get { return maxH; } set { maxH = value; } } /// /// 适用外径最小值 /// [Description("最小值")] [Nullable(true)] [DataLength(10)] public string MinD { get { return minD; } set { minD = value; } } /// /// 适用外径最大值 /// [Description("最大值")] [Nullable(true)] [DataLength(10)] public string MaxD { get { return maxD; } set { maxD = value; } } /// /// 产品代码(适用变径规格) /// [Description("变径规格")] [Nullable(false)] [DataLength(7)] public string SpecCode { get { return specCode; } set { specCode = value; } } /// /// 扣型集合代码 /// [Description("扣型集合代码")] [Nullable(true)] [DataLength(200)] public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 扣型集合描述 /// [Description("扣型集合")] [Nullable(true)] [DataLength(1000)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// ID号 /// [Description("ID号")] [Nullable(false)] [DataLength(40)] public string CraftId { get { return craftId; } set { craftId = value; } } /// /// KEY /// [Description("KEY")] public string CraftKey { get { return craftKey; } set { craftKey = value; } } } }