using System; using System.Collections.Generic; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; using System.ComponentModel; namespace com.steering.pss.plan.jgtransa.model { /// /// 数据库表PLN_GX_JG_M所对应的实体类(生成工具:代码生成工具3.0) /// 作者:xiaohai-PC 时间:2015-10-28 /// public class PlnGxJgMEntity { /// /// 接箍工序订单编号 /// private string proPlanId = ""; /// /// 生产顺序号 /// private string planSeqNo = ""; /// /// 箍加工产线代码 /// private string plineCode = ""; /// /// 箍加工产线描述 /// private string plineName = ""; /// /// 监制要求 /// private string monitordemand = ""; /// /// 是否接箍监制 /// private string ifMonitorJg = ""; /// /// 监制编号 /// private string prdcrNo = ""; /// /// 接箍码 /// private string codeJg = ""; /// /// 钢级(牌号)代码 /// private string steelcode = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 外径 /// private string outdiameter = null; /// /// 临界壁厚 /// private string wallthick = null; /// /// 接箍长度 /// private string aimlength = null; /// /// 单重 /// private string singleweight = null; /// /// 接箍规格代码 /// private string specJg = ""; /// /// 接箍规格描述 /// private string specJgDesc = ""; /// /// 扣型代码 /// private string modelCode = ""; /// /// 接箍扣型描述 /// private string modelDesc = ""; /// /// 中孔类别(I、II、III、IV...) /// private string styleJg = ""; /// /// 中孔内径 /// private string diameter = null; /// /// 测量J值 /// private string checkJVal = null; /// /// 接箍备料码 /// private string codeJgBl = ""; /// /// 接箍料外径(mm) /// private string minD = null; /// /// 接箍料壁厚(mm) /// private string minH = null; /// /// 接箍料目标长度 /// private string aimlengthBl = null; /// /// 接箍坯料外径 /// private string diameterPl = null; /// /// 接箍坯料壁厚 /// private string heightPl = null; /// /// 接箍坯料长度min /// private string lengthMin = ""; /// /// 接箍坯料长度max /// private string lengthMax = ""; /// /// 订单总个数 /// private string planNum = null; /// /// 单支可切个数 /// private string singleCutNun = null; /// /// 备料支数 /// private string blNum = null; /// /// 备料重量 /// private string blWeight = null; /// /// 计划接箍加工耗时(分) /// private string planUsetimeJg = null; /// /// 计划接箍加工生产时间 /// private string planTimeJg = ""; /// /// 生产批次已排个数 /// private string batchedNum = null; /// /// 生产完成个数 /// private string producedNum = null; /// /// 订单状态 /// private string planstatus = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 接箍工序订单编号 /// [Description("接箍工序订单编号")] [Nullable(false)] [DataLength(20)] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 生产顺序号 /// [Description("生产顺序号")] [Nullable(true)] [DataLength(20)] public string PlanSeqNo { get { return planSeqNo; } set { planSeqNo = value; } } /// /// 箍加工产线代码 /// [Description("箍加工产线代码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 箍加工产线描述 /// [Description("箍加工产线描述")] [Nullable(true)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 监制要求 /// [Description("监制要求")] [Nullable(true)] [DataLength(200)] public string Monitordemand { get { return monitordemand; } set { monitordemand = value; } } /// /// 是否接箍监制 /// [Description("是否接箍监制")] [Nullable(true)] [DataLength(1)] public string IfMonitorJg { get { return ifMonitorJg; } set { ifMonitorJg = value; } } /// /// 监制编号 /// [Description("监制编号")] [Nullable(true)] [DataLength(40)] public string PrdcrNo { get { return prdcrNo; } set { prdcrNo = value; } } /// /// 接箍码 /// [Description("接箍码")] [Nullable(true)] [DataLength(7)] public string CodeJg { get { return codeJg; } set { codeJg = value; } } /// /// 钢级(牌号)代码 /// [Description("钢级(牌号)代码")] [Nullable(true)] [DataLength(10)] public string Steelcode { get { return steelcode; } set { steelcode = value; } } /// /// 钢级(牌号)名称 /// [Description("钢级(牌号)名称")] [Nullable(true)] [DataLength(100)] public string Steelname { get { return steelname; } set { steelname = value; } } /// /// 外径 /// [Description("外径")] [Nullable(true)] [DataLength(10)] public string Outdiameter { get { return outdiameter; } set { outdiameter = value; } } /// /// 临界壁厚 /// [Description("临界壁厚")] [Nullable(true)] [DataLength(10)] public string Wallthick { get { return wallthick; } set { wallthick = value; } } /// /// 接箍长度 /// [Description("接箍长度")] [Nullable(true)] [DataLength(10)] public string Aimlength { get { return aimlength; } set { aimlength = value; } } /// /// 单重 /// [Description("单重")] [Nullable(true)] [DataLength(10)] public string Singleweight { get { return singleweight; } set { singleweight = 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; } } /// /// 扣型代码 /// [Description("扣型代码")] [Nullable(true)] [DataLength(20)] public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 接箍扣型描述 /// [Description("接箍扣型描述")] [Nullable(true)] [DataLength(100)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 中孔类别(I、II、III、IV...) /// [Description("中孔类别(I、II、III、IV...)")] [Nullable(true)] [DataLength(8)] public string StyleJg { get { return styleJg; } set { styleJg = value; } } /// /// 中孔内径 /// [Description("中孔内径")] [Nullable(true)] [DataLength(6)] public string Diameter { get { return diameter; } set { diameter = value; } } /// /// 测量J值 /// [Description("测量J值")] [Nullable(true)] [DataLength(6)] public string CheckJVal { get { return checkJVal; } set { checkJVal = value; } } /// /// 接箍备料码 /// [Description("接箍备料码")] [Nullable(true)] [DataLength(20)] public string CodeJgBl { get { return codeJgBl; } set { codeJgBl = value; } } /// /// 接箍料外径(mm) /// [Description("接箍料外径(mm)")] [Nullable(true)] [DataLength(6)] public string MinD { get { return minD; } set { minD = value; } } /// /// 接箍料壁厚(mm) /// [Description("接箍料壁厚(mm)")] [Nullable(true)] [DataLength(6)] public string MinH { get { return minH; } set { minH = value; } } /// /// 接箍料目标长度 /// [Description("接箍料目标长度")] [Nullable(true)] [DataLength(10)] public string AimlengthBl { get { return aimlengthBl; } set { aimlengthBl = value; } } /// /// 接箍坯料外径 /// [Description("接箍坯料外径")] [Nullable(true)] [DataLength(6)] public string DiameterPl { get { return diameterPl; } set { diameterPl = value; } } /// /// 接箍坯料壁厚 /// [Description("接箍坯料壁厚")] [Nullable(true)] [DataLength(6)] public string HeightPl { get { return heightPl; } set { heightPl = value; } } /// /// 接箍坯料长度min /// [Description("接箍坯料长度min")] [Nullable(true)] [DataLength(10)] public string LengthMin { get { return lengthMin; } set { lengthMin = value; } } /// /// 接箍坯料长度max /// [Description("接箍坯料长度max")] [Nullable(true)] [DataLength(10)] public string LengthMax { get { return lengthMax; } set { lengthMax = value; } } /// /// 订单总个数 /// [Description("订单总个数")] [Nullable(true)] [DataLength(10)] public string PlanNum { get { return planNum; } set { planNum = value; } } /// /// 单支可切个数 /// [Description("单支可切个数")] [Nullable(true)] [DataLength(10)] public string SingleCutNun { get { return singleCutNun; } set { singleCutNun = value; } } /// /// 备料支数 /// [Description("备料支数")] [Nullable(true)] [DataLength(10)] public string BlNum { get { return blNum; } set { blNum = value; } } /// /// 备料重量 /// [Description("备料重量")] [Nullable(true)] [DataLength(10)] public string BlWeight { get { return blWeight; } set { blWeight = value; } } /// /// 计划接箍加工耗时(分) /// [Description("计划接箍加工耗时(分)")] [Nullable(true)] [DataLength(10)] public string PlanUsetimeJg { get { return planUsetimeJg; } set { planUsetimeJg = value; } } /// /// 计划接箍加工生产时间 /// [Description("计划接箍加工生产时间")] [Nullable(true)] public string PlanTimeJg { get { return planTimeJg; } set { planTimeJg = value; } } /// /// 生产批次已排个数 /// [Description("生产批次已排个数")] [Nullable(true)] [DataLength(10)] public string BatchedNum { get { return batchedNum; } set { batchedNum = value; } } /// /// 生产完成个数 /// [Description("生产完成个数")] [Nullable(true)] [DataLength(10)] public string ProducedNum { get { return producedNum; } set { producedNum = value; } } /// /// 订单状态 /// [Description("订单状态")] [Nullable(true)] [DataLength(20)] public string Planstatus { get { return planstatus; } set { planstatus = 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; } } } }