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.jggxpln.model
{
public class PlnOrdJgMEditEntity
{
///
/// 接箍工序订单编号
///
private string proPlanId = "";
///
/// 接箍码
///
private string codeJg = "";
///
/// 备料码
///
private string codeJgBl = "";
///
/// 接箍个数
///
private string numJg = "";
///
/// 接箍重量
///
private string weightJg = "";
///
/// 单个接箍加长(mm)
///
private string singleAddlen = "";
///
/// 备料重量
///
private string jgblReqWeight = "";
///
/// 备料支数
///
private string numJgbl = "";
///
/// 备料需求长度(m)
///
private string jgblSumlenth = "";
///
/// 创建人
///
private string createName = "";
///
/// 监制编号
///
private string prdcrNo = "";
///
/// 监制编号
///
[Description("监制编号")]
[Nullable(true)]
[DataLength(40)]
public string PrdcrNo
{
get { return prdcrNo; }
set { prdcrNo = value; }
}
///
/// 接箍工序订单编号
///
[Description("接箍订单号")]
[Nullable(false)]
[DataLength(20)]
public string ProPlanId
{
get { return proPlanId; }
set { proPlanId = value; }
}
///
/// 接箍码
///
[Nullable(true)]
[DataLength(20)]
public string CodeJg
{
get { return codeJg; }
set { codeJg = value; }
}
///
/// 备料码
///
[Nullable(true)]
[DataLength(20)]
public string CodeJgBl
{
get { return codeJgBl; }
set { codeJgBl = value; }
}
///
/// 接箍个数
///
[Nullable(true)]
[DataLength(20)]
public string NumJg
{
get { return numJg; }
set { numJg = value; }
}
///
/// 接箍重量
///
[Nullable(true)]
[DataLength(20)]
public string WeightJg
{
get { return weightJg; }
set { weightJg = value; }
}
///
/// 单个接箍加长长度
///
[Nullable(true)]
[DataLength(20)]
public string SingleAddlen
{
get { return singleAddlen; }
set { singleAddlen = value; }
}
///
/// 备料重量
///
[Nullable(true)]
[DataLength(20)]
public string JgblReqWeight
{
get { return jgblReqWeight; }
set { jgblReqWeight = value; }
}
///
/// 备料支数
///
[Nullable(true)]
[DataLength(20)]
public string NumJgbl
{
get { return numJgbl; }
set { numJgbl = value; }
}
///
/// 接箍料需求长度
///
[Nullable(true)]
[DataLength(20)]
public string JgblSumlenth
{
get { return jgblSumlenth; }
set { jgblSumlenth = value; }
}
///
/// 创建人
///
[Nullable(true)]
[DataLength(20)]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
}
}