using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace com.steering.pss.plan.jgtransa.model { /// /// 数据库表PLN_GX_JG_D所对应的实体类(生成工具:代码生成工具3.0) /// 作者:xiaohai-PC 时间:2015-10-28 /// public class PlnGxJgDEntity { /// /// 接箍工序订单编号 /// private string proPlanId = ""; /// /// 接箍合同号 /// private string jgOrderno = ""; /// /// 合同号 /// private string orderNo = ""; /// /// 合同行号 /// private string orderSeq = ""; /// /// 交货编码 /// private string deliveryNo = ""; /// /// 客户编号 /// private string buyerId = ""; /// /// 客户名称 /// private string buyerName = ""; /// /// 监制要求 /// private string monitordemand = ""; /// /// 是否接箍监制 /// private string ifMonitorJg = ""; /// /// 监制编号 /// private string prdcrNo = ""; /// /// 接箍料需求号 /// private string reqBlId = ""; /// /// 接箍码 /// private string codeJg = ""; /// /// 接箍备料码 /// private string codeJgBl = ""; /// /// 接箍排产个数 /// private string plannum = null; /// /// 接箍规格代码 /// private string specJg = ""; /// /// 接箍规格描述 /// private string specJgDesc = ""; /// /// 生产完成个数 /// private string producedNum = null; /// /// 创建人 /// 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(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)] [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 ReqBlId { get { return reqBlId; } set { reqBlId = value; } } /// /// 接箍码 /// [Description("接箍码")] [Nullable(true)] [DataLength(7)] public string CodeJg { get { return codeJg; } set { codeJg = value; } } /// /// 接箍备料码 /// [Description("接箍备料码")] [Nullable(true)] [DataLength(20)] public string CodeJgBl { get { return codeJgBl; } set { codeJgBl = value; } } /// /// 接箍排产个数 /// [Description("接箍排产个数")] [Nullable(true)] [DataLength(10)] public string Plannum { get { return plannum; } set { plannum = 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(10)] public string ProducedNum { get { return producedNum; } set { producedNum = 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; } } } }