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.plnsaleord.order.model { /// /// 数据库表PLN_ORDER_JG所对应的实体类(生成工具:代码生成工具3.0) /// 作者:xiaohai-PC 时间:2015-10-28 /// public class PlnOrderJgEntity { /// /// 接箍合同号 /// private string jgOrderno = ""; /// /// 合同号 /// private string orderNo = ""; /// /// 合同行号 /// private string orderSeq = ""; /// /// 交货编码 /// private string deliveryNo = ""; /// /// 客户编号 /// private string buyerId = ""; /// /// 客户名称 /// private string buyerName = ""; /// /// 交货开始日期 /// private string delvryBdate = ""; /// /// 交货结束日期 /// private string delvryEdate = ""; /// /// 合同联系人 /// private string ordercontact = ""; /// /// 监制要求 /// private string monitordemand = ""; /// /// 是否接箍监制 /// private string ifMonitorJg = ""; /// /// 监制编号 /// private string prdcrNo = ""; /// /// 产品规范码 /// private string psc = ""; /// /// 冶金规范码 /// private string msc = ""; /// /// 制程索引号 /// private string indexSeq = ""; /// /// 接箍码 /// private string codeJg = ""; /// /// 钢级(牌号)代码 /// private string steelcode = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 外径 /// private string outdiameter = null; /// /// 临界壁厚 /// private string wallthick = null; /// /// 控制壁厚(暂不用) /// private string aimwallthick = null; /// /// 扣型代码 /// private string modelCode = ""; /// /// 目标长度 /// private string aimlength = null; /// /// 单重 /// private string singleweight = null; /// /// 合同重量 /// private string orderweight = null; /// /// 合同个数 /// private string ordernum = null; /// /// 最迟生产日期 /// private string latestProdDate = ""; /// /// 利库充当量 /// private string matchweight = null; /// /// 利库个数 /// private string matchnum = null; /// /// 有无外购计划 /// private string ifbuyplan = ""; /// /// 外购计划号 /// private string buyplanid = ""; /// /// 外购计划重量 /// private string buyplanweight = null; /// /// 外购计划个数 /// private string buyplannum = null; /// /// 接箍合同状态 /// private string jgorderstatus = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 接箍加工组 /// private string groupJgx = ""; /// /// 已做备料需求接箍量 /// private string jgwtBlreq = null; /// /// 下发时间 /// private string issuedTime = ""; /// /// 接箍规格代码 /// private string specJg = ""; /// /// 接箍规格描述 /// private string specJgDesc = ""; /// /// 接箍扣型描述 /// private string modelDesc = ""; /// /// 中孔类别 /// private string styleJg = ""; /// /// 中孔内径 /// private string diameter = null; /// /// 测量J值 /// private string checkJVal = null; /// /// 接箍合同号 /// [Description("接箍合同号")] [Nullable(false)] [DataLength(40)] public string JgOrderno { get { return jgOrderno; } set { jgOrderno = value; } } /// /// 合同号 /// [Description("合同号")] [Nullable(true)] [DataLength(20)] public string OrderNo { get { return orderNo; } set { orderNo = value; } } /// /// 合同行号 /// [Description("合同行号")] [Nullable(true)] [DataLength(3)] public string OrderSeq { get { return orderSeq; } set { orderSeq = value; } } /// /// 交货编码 /// [Description("交货编码")] [Nullable(true)] [DataLength(3)] public string DeliveryNo { get { return deliveryNo; } set { deliveryNo = value; } } /// /// 客户编号 /// [Description("客户编号")] [Nullable(true)] [DataLength(20)] public string BuyerId { get { return buyerId; } set { buyerId = value; } } /// /// 客户名称 /// [Description("客户名称")] [Nullable(true)] [DataLength(100)] public string BuyerName { get { return buyerName; } set { buyerName = value; } } /// /// 交货开始日期 /// [Description("交货开始日期")] [Nullable(true)] public string DelvryBdate { get { return delvryBdate; } set { delvryBdate = value; } } /// /// 交货结束日期 /// [Description("交货结束日期")] [Nullable(true)] public string DelvryEdate { get { return delvryEdate; } set { delvryEdate = value; } } /// /// 合同联系人 /// [Description("合同联系人")] [Nullable(true)] [DataLength(20)] public string Ordercontact { get { return ordercontact; } set { ordercontact = 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(20)] public string Psc { get { return psc; } set { psc = value; } } /// /// 冶金规范码 /// [Description("冶金规范码")] [Nullable(true)] [DataLength(20)] public string Msc { get { return msc; } set { msc = value; } } /// /// 制程索引号 /// [Description("制程索引号")] [Nullable(true)] [DataLength(32)] public string IndexSeq { get { return indexSeq; } set { indexSeq = 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 Aimwallthick { get { return aimwallthick; } set { aimwallthick = value; } } /// /// 扣型代码 /// [Description("扣型代码")] [Nullable(true)] [DataLength(20)] public string ModelCode { get { return modelCode; } set { modelCode = 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(16)] public string Orderweight { get { return orderweight; } set { orderweight = value; } } /// /// 合同个数 /// [Description("合同个数")] [Nullable(true)] [DataLength(10)] public string Ordernum { get { return ordernum; } set { ordernum = value; } } /// /// 最迟生产日期 /// [Description("最迟生产日期")] [Nullable(true)] public string LatestProdDate { get { return latestProdDate; } set { latestProdDate = value; } } /// /// 利库充当量 /// [Description("利库充当量")] [Nullable(true)] [DataLength(10)] public string Matchweight { get { return matchweight; } set { matchweight = value; } } /// /// 利库个数 /// [Description("利库个数")] [Nullable(true)] [DataLength(10)] public string Matchnum { get { return matchnum; } set { matchnum = value; } } /// /// 有无外购计划 /// [Description("有无外购计划")] [Nullable(true)] [DataLength(1)] public string Ifbuyplan { get { return ifbuyplan; } set { ifbuyplan = value; } } /// /// 外购计划号 /// [Description("外购计划号")] [Nullable(true)] [DataLength(20)] public string Buyplanid { get { return buyplanid; } set { buyplanid = value; } } /// /// 外购计划重量 /// [Description("外购计划重量")] [Nullable(true)] [DataLength(10)] public string Buyplanweight { get { return buyplanweight; } set { buyplanweight = value; } } /// /// 外购计划个数 /// [Description("外购计划个数")] [Nullable(true)] [DataLength(10)] public string Buyplannum { get { return buyplannum; } set { buyplannum = value; } } /// /// 接箍合同状态 /// [Description("接箍合同状态 ")] [Nullable(true)] [DataLength(20)] public string Jgorderstatus { get { return jgorderstatus; } set { jgorderstatus = 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 GroupJgx { get { return groupJgx; } set { groupJgx = value; } } /// /// 已做备料需求接箍量 /// [Description("已做备料需求接箍量")] [Nullable(true)] [DataLength(16)] public string JgwtBlreq { get { return jgwtBlreq; } set { jgwtBlreq = value; } } /// /// 下发时间 /// [Description("下发时间")] [Nullable(true)] public string IssuedTime { get { return issuedTime; } set { issuedTime = 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(100)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 中孔类别 /// [Description("中孔类别")] [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; } } } }