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.Entity
{
///
/// 数据库表PLN_GX_JG_M所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:DESKTOP-4E32QV0 时间:2016-03-18
///
public class FrmPlnGxJgMEntity
{
///
/// 接箍工序订单编号
///
private string proPlanId = "";
///
/// 接箍产线代码
///
private string plineCode = "";
///
/// 接箍产线描述
///
private string plineName = "";
///
/// 生产顺序号
///
private string planSeqNo = "";
///
/// 监制要求
///
private string monitordemand = "";
///
/// 是否接箍监制
///
private string ifMonitorJg = "";
///
/// 监制编号
///
private string prdcrNo = "";
///
/// 接箍码
///
private string codeJg = "";
///
/// 接箍规格代码
///
private string specJg = "";
///
/// 接箍规格描述
///
private string specJgDesc = "";
///
/// 扣型代码
///
private string modelCode = "";
///
/// 接箍扣型描述
///
private string modelDesc = "";
///
/// 中孔类别(I、II、III、IV...)
///
private string styleJg = "";
///
/// 中孔内径
///
private decimal? diameter = null;
///
/// 测量J值
///
private decimal? checkJVal = null;
///
/// 可选备料码
///
private string allCodeBl = "";
///
/// 默认接箍备料码
///
private string codeJgBl = "";
///
/// 接箍料物料编码
///
private string blWlId = "";
///
/// 接箍料物料描述
///
private string blWlDesc = "";
///
/// 接箍料外径(mm)
///
private decimal? minD = null;
///
/// 接箍料壁厚(mm)
///
private decimal? minH = null;
///
/// 接箍坯料外径
///
private decimal? diameterPl = null;
///
/// 接箍坯料壁厚
///
private decimal? heightPl = null;
///
/// 接箍坯料长度min
///
private string lengthMin = "";
///
/// 接箍坯料长度max
///
private string lengthMax = "";
///
/// 接箍坯料锥度
///
private string taper = "";
///
/// 订单总个数
///
private decimal? planNum = null;
///
/// 备料支数
///
private decimal? blNum = null;
///
/// 备料重量
///
private decimal? blWeight = null;
///
/// 作业工单已排个数
///
private decimal? zyplanNum = null;
///
/// 生产完成个数
///
private decimal? producedNum = null;
///
/// 订单状态(0计划,1下发,2生产中,3生产完成,4取消)
///
private string planstatus = "";
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 修改人
///
private string updateName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 利库个数
///
private decimal? matchnum = null;
///
/// 有无外购计划
///
private string ifbuyplan = "";
///
/// 外购计划号
///
private string buyplanid = "";
///
/// 外购计划个数
///
private decimal? buyplannum = null;
///
/// 客户Alpha编号
///
private string custAlphaNo = "";
///
/// 产品特殊要求描述
///
private string orderSpecialDesc = "";
///
/// 用途代码
///
private string alphaCode = "";
///
/// 用途描述
///
private string alphaName = "";
///
/// 已做需求接箍个数
///
private decimal? jgwtBlreq = null;
///
/// 标准名称
///
private string stdName = "";
///
/// 可替钢级
///
private string repSteelname = "";
///
/// 接箍品种代码
///
private string produccodeJg = "";
///
/// 接箍品种描述
///
private string produccodeJgDesc = "";
///
/// 接箍钢级代码
///
private string steelcodeJg = "";
///
/// 接箍钢级名称
///
private string steelcodeJgDesc = "";
///
/// 接箍外径
///
private decimal? diameterJg = null;
///
/// 接箍临界壁厚
///
private decimal? heightJg = null;
///
/// 接箍长度
///
private string lengthJg = "";
///
/// 接箍个单量
///
private string weightJg = "";
///
/// 接箍码适用成品品名代码
///
private string produccode = "";
///
/// 接箍码适成品品名描述
///
private string producname = "";
///
/// 接箍码适用成品壁厚最小值
///
private string minHCp = "";
///
/// 接箍码适用成品壁厚最大值
///
private string maxHCp = "";
///
/// 接箍料外径最小值
///
private string minDCp = "";
///
/// 接箍料外径最大值
///
private string maxDCp = "";
///
/// 标准类别描述(I、II、III)
///
private string stdStyleDesc = "";
///
/// 接箍码适用成品外径最小值
///
private string minDJg = "";
///
/// 接箍码适用成品外径最大值
///
private string maxDJg = "";
///
/// ALPHA描述
///
private string alpha = "";
///
/// 接箍工序订单编号
///
[Description("接箍订单编号")]
[Nullable(false)]
[DataLength(20)]
public string ProPlanId
{
get { return proPlanId; }
set { proPlanId = 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(20)]
public string PlanSeqNo
{
get { return planSeqNo; }
set { planSeqNo = 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(20)]
public string SpecJg
{
get { return specJg; }
set { specJg = value; }
}
///
/// 扣型代码
///
[Description("扣型代码")]
[Nullable(true)]
[DataLength(20)]
public string ModelCode
{
get { return modelCode; }
set { modelCode = value; }
}
///
/// 可选备料码
///
[Description("可选备料码")]
[Nullable(true)]
[DataLength(200)]
public string AllCodeBl
{
get { return allCodeBl; }
set { allCodeBl = value; }
}
///
/// 默认接箍备料码
///
[Description("接箍备料码")]
[Nullable(true)]
[DataLength(20)]
public string CodeJgBl
{
get { return codeJgBl; }
set { codeJgBl = value; }
}
///
/// 接箍料物料编码
///
[Description("接箍料物料编码")]
[Nullable(true)]
[DataLength(40)]
public string BlWlId
{
get { return blWlId; }
set { blWlId = value; }
}
///
/// 接箍料物料描述
///
[Description("接箍料物料")]
[Nullable(true)]
[DataLength(40)]
public string BlWlDesc
{
get { return blWlDesc; }
set { blWlDesc = value; }
}
///
/// 订单总个数
///
[Description("订单总个数")]
[Nullable(true)]
[DataLength(10)]
public decimal? PlanNum
{
get { return planNum; }
set { planNum = value; }
}
///
/// 备料支数
///
[Description("备料支数")]
[Nullable(true)]
[DataLength(10)]
public decimal? BlNum
{
get { return blNum; }
set { blNum = value; }
}
///
/// 备料重量
///
[Description("备料重量(t)")]
[Nullable(true)]
[DataLength(10)]
public decimal? BlWeight
{
get { return blWeight; }
set { blWeight = value; }
}
///
/// 作业工单已排个数
///
[Description("工单已排个数")]
[Nullable(true)]
[DataLength(10)]
public decimal? ZyplanNum
{
get { return zyplanNum; }
set { zyplanNum = value; }
}
///
/// 生产完成个数
///
[Description("生产完成个数")]
[Nullable(true)]
[DataLength(10)]
public decimal? ProducedNum
{
get { return producedNum; }
set { producedNum = value; }
}
///
/// 订单状态(0计划,1下发,2生产中,3生产完成,4取消)
///
[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; }
}
///
/// 利库个数
///
[Description("利库个数")]
[Nullable(true)]
[DataLength(10)]
public decimal? 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 decimal? Buyplannum
{
get { return buyplannum; }
set { buyplannum = value; }
}
///
/// 客户Alpha编号
///
[Description("客户Alpha编号")]
[Nullable(true)]
[DataLength(20)]
public string CustAlphaNo
{
get { return custAlphaNo; }
set { custAlphaNo = value; }
}
///
/// 用途代码
///
[Description("用途代码")]
[Nullable(true)]
[DataLength(20)]
public string AlphaCode
{
get { return alphaCode; }
set { alphaCode = value; }
}
///
/// 已做需求接箍个数
///
[Description("已组料个数")]
[Nullable(true)]
[DataLength(10)]
public decimal? JgwtBlreq
{
get { return jgwtBlreq; }
set { jgwtBlreq = value; }
}
///
/// 用途描述
///
[Description("用途描述 ")]
[Nullable(true)]
[DataLength(200)]
public string AlphaName
{
get { return alphaName; }
set { alphaName = value; }
}
///
/// 产品特殊要求描述
///
[Description("技术特殊要求")]
[Nullable(true)]
[DataLength(400)]
public string OrderSpecialDesc
{
get { return orderSpecialDesc; }
set { orderSpecialDesc = value; }
}
///
/// 接箍规格描述
///
[Description("规格")]
[Nullable(true)]
[DataLength(100)]
public string SpecJgDesc
{
get { return specJgDesc; }
set { specJgDesc = value; }
}
///
/// 接箍品种代码
///
[Description("接箍品种代码")]
[Nullable(true)]
[DataLength(20)]
public string ProduccodeJg
{
get { return produccodeJg; }
set { produccodeJg = value; }
}
///
/// 接箍品种描述
///
[Description("品种")]
[Nullable(true)]
[DataLength(100)]
public string ProduccodeJgDesc
{
get { return produccodeJgDesc; }
set { produccodeJgDesc = value; }
}
///
/// 接箍钢级代码
///
[Description("接箍钢级代码")]
[Nullable(true)]
[DataLength(10)]
public string SteelcodeJg
{
get { return steelcodeJg; }
set { steelcodeJg = value; }
}
///
/// 接箍钢级名称
///
[Description("钢级")]
[Nullable(true)]
[DataLength(100)]
public string SteelcodeJgDesc
{
get { return steelcodeJgDesc; }
set { steelcodeJgDesc = value; }
}
///
/// 接箍扣型描述
///
[Description("扣型")]
[Nullable(true)]
[DataLength(100)]
public string ModelDesc
{
get { return modelDesc; }
set { modelDesc = value; }
}
///
/// 中孔类别(I、II、III、IV...)
///
[Description("中孔类别")]
[Nullable(true)]
[DataLength(8)]
public string StyleJg
{
get { return styleJg; }
set { styleJg = value; }
}
///
/// 标准名称
///
[Description("标准名称")]
[Nullable(true)]
[DataLength(200)]
public string StdName
{
get { return stdName; }
set { stdName = value; }
}
///
/// 标准类别描述(I、II、III)
///
[Description("标准类别")]
[Nullable(true)]
[DataLength(10)]
public string StdStyleDesc
{
get { return stdStyleDesc; }
set { stdStyleDesc = value; }
}
///
/// 可替代钢级
///
[Description("可替代钢级")]
[Nullable(true)]
[DataLength(200)]
public string RepSteelname
{
get { return repSteelname; }
set { repSteelname = value; }
}
///
/// 接箍外径
///
[Description("外径")]
[Nullable(true)]
[DataLength(6)]
public decimal? DiameterJg
{
get { return diameterJg; }
set { diameterJg = value; }
}
///
/// 接箍长度
///
[Description("长度")]
[Nullable(true)]
[DataLength(10)]
public string LengthJg
{
get { return lengthJg; }
set { lengthJg = value; }
}
///
/// 接箍个单量
///
[Description("单个重/KG")]
[Nullable(true)]
[DataLength(10)]
public string WeightJg
{
get { return weightJg; }
set { weightJg = value; }
}
///
/// 接箍临界壁厚
///
[Description("临界壁厚")]
[Nullable(true)]
[DataLength(6)]
public decimal? HeightJg
{
get { return heightJg; }
set { heightJg = value; }
}
///
/// 测量J值
///
[Description("测量J值")]
[Nullable(true)]
[DataLength(6)]
public decimal? CheckJVal
{
get { return checkJVal; }
set { checkJVal = value; }
}
///
/// 中孔内径
///
[Description("中孔内径")]
[Nullable(true)]
[DataLength(6)]
public decimal? Diameter
{
get { return diameter; }
set { diameter = value; }
}
///
/// ALPHA描述
///
[Description("特殊要求")]
[Nullable(true)]
[DataLength(200)]
public string Alpha
{
get { return alpha; }
set { alpha = value; }
}
///
/// 接箍料外径(mm)
///
[Description("外径")]
[Nullable(true)]
[DataLength(6)]
public decimal? MinD
{
get { return minD; }
set { minD = value; }
}
///
/// 接箍料壁厚(mm)
///
[Description("壁厚")]
[Nullable(true)]
[DataLength(6)]
public decimal? MinH
{
get { return minH; }
set { minH = value; }
}
///
/// 接箍料外径最小值
///
[Description("最小外径")]
[Nullable(true)]
[DataLength(10)]
public string MinDCp
{
get { return minDCp; }
set { minDCp = value; }
}
///
/// 接箍料外径最大值
///
[Description("最大内径")]
[Nullable(true)]
[DataLength(10)]
public string MaxDCp
{
get { return maxDCp; }
set { maxDCp = value; }
}
///
/// 接箍坯料外径
///
[Description("外径")]
[Nullable(true)]
[DataLength(6)]
public decimal? DiameterPl
{
get { return diameterPl; }
set { diameterPl = value; }
}
///
/// 接箍坯料壁厚
///
[Description("内径")]
[Nullable(true)]
[DataLength(6)]
public decimal? HeightPl
{
get { return heightPl; }
set { heightPl = value; }
}
///
/// 接箍坯料长度min
///
[Description("最小长度")]
[Nullable(true)]
[DataLength(10)]
public string LengthMin
{
get { return lengthMin; }
set { lengthMin = value; }
}
///
/// 接箍坯料长度max
///
[Description("最大长度")]
[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 Produccode
{
get { return produccode; }
set { produccode = value; }
}
///
/// 接箍码适成品品名描述
///
[Description("品名描述")]
[Nullable(true)]
[DataLength(100)]
public string Producname
{
get { return producname; }
set { producname = value; }
}
///
/// 接箍码适用成品壁厚最小值
///
[Description("最小壁厚")]
[Nullable(true)]
[DataLength(10)]
public string MinHCp
{
get { return minHCp; }
set { minHCp = value; }
}
///
/// 接箍码适用成品壁厚最大值
///
[Description("最大壁厚")]
[Nullable(true)]
[DataLength(10)]
public string MaxHCp
{
get { return maxHCp; }
set { maxHCp = value; }
}
///
/// 接箍码适用成品外径最小值
///
[Description("最小外径")]
[Nullable(true)]
[DataLength(10)]
public string MinDJg
{
get { return minDJg; }
set { minDJg = value; }
}
///
/// 接箍码适用成品外径最大值
///
[Description("最大外径")]
[Nullable(true)]
[DataLength(10)]
public string MaxDJg
{
get { return maxDJg; }
set { maxDJg = value; }
}
}
}