using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.PlnSaleOrd.JGGXPln.model { /// /// 数据库表PLN_GX_JG_PROP所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-4E32QV0 时间:2016-03-18 /// public class PlnGxJgPropEntity { /// /// 接箍工序订单编号 /// private string proPlanId = ""; /// /// 属性分组号 /// private string jgGroupId = ""; /// /// 接箍规格描述 /// private string specJgDesc = ""; /// /// 接箍备料码 /// private string codeJgBl = ""; /// /// 钢级(牌号)代码 /// private string steelcode = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 接箍料外径(mm) /// private decimal? minD = null; /// /// 接箍料壁厚(mm) /// private decimal? minH = null; /// /// 接箍料目标长度 /// private decimal? aimlengthBl = null; /// /// 目标切管长 /// private decimal? aimCutLen = null; /// /// 接箍坯料长度min /// private string lengthMin = ""; /// /// 接箍坯料长度max /// private string lengthMax = ""; /// /// 接箍坯料锥度 /// private string taper = ""; /// /// 扣型代码 /// private string modelCode = ""; /// /// 接箍扣型描述 /// private string modelDesc = ""; /// /// 探伤要求(408401) /// private string demandDetection = ""; /// /// 磷化镀铜要求(408402) /// private string demandBonderizing = ""; /// /// 压印喷标 /// private string demandCopper = ""; /// /// 喷砂要求 /// private string demandBlast = ""; /// /// 分组接箍个数 /// private decimal? groupNum = null; /// /// 单支可切个数 /// private decimal? singleCutNun = null; /// /// 分组备料支数 /// private decimal? groupBlNum = null; /// /// 分组备料重量 /// private decimal? groupBlWt = null; /// /// 生产完成个数 /// private decimal? producedNum = null; /// /// 分组状态(0计划,1下发,2工单制定中,3工单制定完成,4生产中,5生产完成,6取消) /// private string groupStatus = ""; /// /// 是否确认下发 /// private string isPlanOk = ""; /// /// 接箍利库个数 /// private decimal? matchnumJg = null; /// /// 接箍料利库重量 /// private decimal? matchwtBl = null; /// /// 接箍料利库支数 /// private decimal? matchnumBl = null; /// /// 炉计划投料重量 /// private decimal? batchedWt = null; /// /// 炉计划投料支数 /// private decimal? batchedNum = null; /// /// 炉计划产出个数 /// private decimal? batchedNumOut = null; /// /// 接箍工序订单编号 /// [Description("接箍订单编号")] [Nullable(false)] [DataLength(20)] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 属性分组号 /// [Description("属性分组号")] [Nullable(false)] [DataLength(10)] public string JgGroupId { get { return jgGroupId; } set { jgGroupId = value; } } /// /// 接箍规格描述 /// [Description("接箍规格")] [Nullable(true)] [DataLength(100)] public string SpecJgDesc { get { return specJgDesc; } set { specJgDesc = value; } } /// /// 接箍备料码 /// [Description("接箍备料码")] [Nullable(true)] [DataLength(20)] public string CodeJgBl { get { return codeJgBl; } set { codeJgBl = 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 Gradecode { get { return gradecode; } set { gradecode = value; } } /// /// 钢种名称 /// [Description("钢种")] [Nullable(true)] [DataLength(100)] public string Gradename { get { return gradename; } set { gradename = value; } } /// /// 接箍料外径(mm) /// [Description("接箍料外径(mm)")] [Nullable(true)] [DataLength(6)] public decimal? MinD { get { return minD; } set { minD = value; } } /// /// 接箍料壁厚(mm) /// [Description("接箍料壁厚(mm)")] [Nullable(true)] [DataLength(6)] public decimal? MinH { get { return minH; } set { minH = value; } } /// /// 接箍料目标长度 /// [Description("接箍料目标长度(m)")] [Nullable(true)] [DataLength(10)] public decimal? AimlengthBl { get { return aimlengthBl; } set { aimlengthBl = value; } } /// /// 目标切管长 /// [Description("目标切管长(m)")] [Nullable(true)] [DataLength(10)] public decimal? AimCutLen { get { return aimCutLen; } set { aimCutLen = value; } } /// /// 接箍坯料长度min /// [Description("接箍坯料长度min(m)")] [Nullable(true)] [DataLength(10)] public string LengthMin { get { return lengthMin; } set { lengthMin = value; } } /// /// 接箍坯料长度max /// [Description("接箍坯料长度max(m)")] [Nullable(true)] [DataLength(10)] public string LengthMax { get { return lengthMax; } set { lengthMax = value; } } /// /// 接箍坯料锥度 /// [Description("接箍坯料锥度")] [Nullable(true)] [DataLength(10)] public string Taper { get { return taper; } set { taper = 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; } } /// /// 探伤要求(408401) /// [Description("探伤要求")] [Nullable(true)] [DataLength(200)] public string DemandDetection { get { return demandDetection; } set { demandDetection = value; } } /// /// 磷化镀铜要求(408402) /// [Description("磷化镀铜要求")] [Nullable(true)] [DataLength(200)] public string DemandBonderizing { get { return demandBonderizing; } set { demandBonderizing = value; } } /// /// 压印喷标 /// [Description("压印喷标")] [Nullable(true)] [DataLength(400)] public string DemandCopper { get { return demandCopper; } set { demandCopper = value; } } /// /// 喷砂要求 /// [Description("喷砂要求")] [Nullable(true)] [DataLength(200)] public string DemandBlast { get { return demandBlast; } set { demandBlast = value; } } /// /// 分组接箍个数 /// [Description("分组接箍个数")] [Nullable(true)] [DataLength(10)] public decimal? GroupNum { get { return groupNum; } set { groupNum = value; } } /// /// 单支可切个数 /// [Description("单支可切个数")] [Nullable(true)] [DataLength(10)] public decimal? SingleCutNun { get { return singleCutNun; } set { singleCutNun = value; } } /// /// 分组备料支数 /// [Description("分组备料支数")] [Nullable(true)] [DataLength(10)] public decimal? GroupBlNum { get { return groupBlNum; } set { groupBlNum = value; } } /// /// 分组备料重量 /// [Description("分组备料重量(t)")] [Nullable(true)] [DataLength(10)] public decimal? GroupBlWt { get { return groupBlWt; } set { groupBlWt = value; } } /// /// 生产完成个数 /// [Description("生产完成个数")] [Nullable(true)] [DataLength(10)] public decimal? ProducedNum { get { return producedNum; } set { producedNum = value; } } /// /// 分组状态(0计划,1下发,2工单制定中,3工单制定完成,4生产中,5生产完成,6取消) /// [Description("分组状态")] [Nullable(true)] [DataLength(20)] public string GroupStatus { get { return groupStatus; } set { groupStatus = value; } } /// /// 是否确认下发 /// [Description("是否确认下发")] [Nullable(true)] [DataLength(1)] public string IsPlanOk { get { return isPlanOk; } set { isPlanOk = value; } } /// /// 接箍利库个数 /// [Description("接箍利库个数")] [Nullable(true)] [DataLength(10)] public decimal? MatchnumJg { get { return matchnumJg; } set { matchnumJg = value; } } /// /// 接箍料利库重量 /// [Description("接箍料利库重量")] [Nullable(true)] [DataLength(10)] public decimal? MatchwtBl { get { return matchwtBl; } set { matchwtBl = value; } } /// /// 接箍料利库支数 /// [Description("接箍料利库支数")] [Nullable(true)] [DataLength(10)] public decimal? MatchnumBl { get { return matchnumBl; } set { matchnumBl = value; } } /// /// 炉计划投料重量 /// [Description("炉计划投料重量")] [Nullable(true)] [DataLength(10)] public decimal? BatchedWt { get { return batchedWt; } set { batchedWt = value; } } /// /// 炉计划投料支数 /// [Description("炉计划投料支数")] [Nullable(true)] [DataLength(10)] public decimal? BatchedNum { get { return batchedNum; } set { batchedNum = value; } } /// /// 炉计划产出个数 /// [Description("炉计划产出个数")] [Nullable(true)] [DataLength(10)] public decimal? BatchedNumOut { get { return batchedNumOut; } set { batchedNumOut = value; } } } }