using Core.Mes.Client.Comm.Attribute;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace com.steering.pss.plnsaleord.GpOptimize.model
{
class PlnZgSToGpEntity
{
///
/// 轧管订单编号
///
private string proPlanId = "";
///
/// 工序排产序号
///
private string gxPlanNo = "";
///
/// 投入物料编码
///
private string inwlId = "";
///
/// 投入物料描述
///
private string inwlDesc = "";
///
/// 单倍坯长
///
private string lenGpSingle = "";
///
/// 是否外购
///
private string ifbuyplan = "";
///
/// 是否炼钢监制
///
private string ifMonitorLg = "";
///
/// 监制编号
///
private string prdcrNo = "";
///
/// 默认管坯成分标准索引号(内控)
///
private string cicGp = "";
///
/// 默认管坯材质标准索引号(内控)
///
private string picGp = "";
///
/// 默认管坯公差标准索引号(内控)
///
private string sicGp = "";
///
/// 默认管坯探伤索引号(内控)
///
private string dicGp = "";
///
/// 默认管坯水压索引码(内控)
///
private string wicGp = "";
///
/// 默认管坯加工标准索引号(内控)
///
private string gicGp = "";
///
/// 管坯需求编号
///
private string gpreqId = "";
///
/// 标准引号集合拼接字符串
///
private string icJoint = "";
///
/// 排产重量
///
private string weigthS = "";
///
/// 排产支数
///
private string numS = "";
///
/// 需坯吨
///
private string gpreqWeight = "";
///
///真空处理是否
///
private string stationRoadLg = "";
private string supplyUnitCode = "";
private string supplyUnit = "";
private string typeFlag = "";
///
///制造商代码
///
public string SupplyUnitCode
{
get { return supplyUnitCode; }
set { supplyUnitCode = value; }
}
///
///制造商
///
public string SupplyUnit
{
get { return supplyUnit; }
set { supplyUnit = value; }
}
///
///是否双经销
///
public string TypeFlag
{
get { return typeFlag; }
set { typeFlag = value; }
}
///
///真空处理是否
///
public string StationRoadLg
{
get { return stationRoadLg; }
set { stationRoadLg = value; }
}
///
/// 需坯吨
///
public string GpreqWeight
{
get { return gpreqWeight; }
set { gpreqWeight = value; }
}
///
/// 需坯吨Min
///
private string gpreqWeightMin = "";
///
/// 需坯吨Min
///
public string GpreqWeightMin
{
get { return gpreqWeightMin; }
set { gpreqWeightMin = value; }
}
///
/// 需坯支
///
private string gpreqNum = "";
///
/// 需坯支
///
public string GpreqNum
{
get { return gpreqNum; }
set { gpreqNum = value; }
}
///
/// 分切数
///
private string outnumCut = "";
///
/// 管坯类型(1铸坯2锻坯)
///
private string gptype = "";
///
/// 铸造类型(1连铸2模铸)
///
private string castingtype = "";
///
/// 钢种代码
///
private string gradecode = "";
///
/// 钢种名称
///
private string gradename = "";
///
/// 管坯直径
///
private string diameterGp = "";
///
/// 数据正常
///
private int succeed = 0;
///
/// 管坯需求支
///
private string reallNum = "";
///
/// 管坯需求支
///
public string ReallNum
{
get { return reallNum; }
set { reallNum = value; }
}
///
/// 管坯需求吨
///
private string reallWt = "";
///
/// 管坯需求吨
///
public string ReallWt
{
get { return reallWt; }
set { reallWt = value; }
}
///
/// 管坯需求吨Min
///
private string reallWtMin = "";
///
/// 管坯需求吨Min
///
public string ReallWtMin
{
get { return reallWtMin; }
set { reallWtMin = value; }
}
///
/// 生产年月
///
private string proMonth = "";
[Description("生产年月")]
[Nullable(false)]
[DataLength(20)]
public string ProMonth
{
get { return proMonth; }
set { proMonth = value; }
}
///
/// 数据正常
///
public int Succeed
{
get { return succeed; }
set { succeed = value; }
}
///
/// 原因
///
private string reason = "";
///
/// 原因
///
public string Reason
{
get { return reason; }
set { reason = value; }
}
///
/// 炼钢、铸造、锻造 制程
///
private string process = "";
///
/// 炼钢、铸造、锻造 制程
///
public string Process
{
get { return process; }
set { process = value; }
}
///
/// 标准引号集合拼接字符串
///
public string IcJoint
{
get { return icJoint; }
set { icJoint = value; }
}
///
/// 轧管订单编号
///
[Description("轧管订单编号")]
[Nullable(false)]
[DataLength(20)]
public string ProPlanId
{
get { return proPlanId; }
set { proPlanId = value; }
}
///
/// 工序排产序号
///
[Description("工序排产序号")]
[Nullable(false)]
[DataLength(10)]
public string GxPlanNo
{
get { return gxPlanNo; }
set { gxPlanNo = value; }
}
///
/// 投入物料编码
///
[Description("投入物料编码")]
[Nullable(true)]
[DataLength(40)]
public string InwlId
{
get { return inwlId; }
set { inwlId = value; }
}
///
/// 投入物料描述
///
[Description("投入物料描述")]
[Nullable(true)]
[DataLength(40)]
public string InwlDesc
{
get { return inwlDesc; }
set { inwlDesc = value; }
}
///
/// 单倍坯长
///
[Description("单倍坯长")]
[Nullable(true)]
[DataLength(10)]
public string LenGpSingle
{
get { return lenGpSingle; }
set { lenGpSingle = value; }
}
///
/// 是否外购
///
[Description("是否外购")]
[Nullable(true)]
[DataLength(1)]
public string Ifbuyplan
{
get { return ifbuyplan; }
set { ifbuyplan = value; }
}
///
/// 是否炼钢监制
///
[Description("是否炼钢监制")]
[Nullable(true)]
[DataLength(1)]
public string IfMonitorLg
{
get { return ifMonitorLg; }
set { ifMonitorLg = value; }
}
///
/// 监制编号
///
[Description("监制编号")]
[Nullable(true)]
[DataLength(40)]
public string PrdcrNo
{
get { return prdcrNo; }
set { prdcrNo = value; }
}
///
/// 默认管坯成分标准索引号(内控)
///
[Description("默认管坯成分标准索引号(内控)")]
[Nullable(true)]
[DataLength(40)]
public string CicGp
{
get { return cicGp; }
set { cicGp = value; }
}
///
/// 默认管坯材质标准索引号(内控)
///
[Description("默认管坯材质标准索引号(内控)")]
[Nullable(true)]
[DataLength(40)]
public string PicGp
{
get { return picGp; }
set { picGp = value; }
}
///
/// 默认管坯公差标准索引号(内控)
///
[Description("默认管坯公差标准索引号(内控)")]
[Nullable(true)]
[DataLength(40)]
public string SicGp
{
get { return sicGp; }
set { sicGp = value; }
}
///
/// 默认管坯探伤索引号(内控)
///
[Description("默认管坯探伤索引号(内控)")]
[Nullable(true)]
[DataLength(40)]
public string DicGp
{
get { return dicGp; }
set { dicGp = value; }
}
///
/// 默认管坯水压索引码(内控)
///
[Description("默认管坯水压索引码(内控)")]
[Nullable(true)]
[DataLength(40)]
public string WicGp
{
get { return wicGp; }
set { wicGp = value; }
}
///
/// 默认管坯加工标准索引号(内控)
///
[Description("默认管坯加工标准索引号(内控)")]
[Nullable(true)]
[DataLength(40)]
public string GicGp
{
get { return gicGp; }
set { gicGp = value; }
}
///
/// 管坯需求编号
///
[Description("管坯需求编号")]
[Nullable(true)]
[DataLength(20)]
public string GpreqId
{
get { return gpreqId; }
set { gpreqId = value; }
}
///
/// 排产重量
///
[Description("排产重量")]
[Nullable(true)]
[DataLength(10)]
public string WeigthS
{
get { return weigthS; }
set { weigthS = value; }
}
///
/// 排产支数
///
[Description("排产支数")]
[Nullable(true)]
[DataLength(10)]
public string NumS
{
get { return numS; }
set { numS = value; }
}
///
/// 分切数
///
[Description("分切数")]
[Nullable(true)]
[DataLength(10)]
public string OutnumCut
{
get { return outnumCut; }
set { outnumCut = value; }
}
///
/// 管坯类型(1铸坯2锻坯)
///
[Description("管坯类型(1铸坯2锻坯)")]
[Nullable(true)]
[DataLength(20)]
public string Gptype
{
get { return gptype; }
set { gptype = value; }
}
///
/// 铸造类型(1连铸2模铸)
///
[Description("铸造类型(1连铸2模铸)")]
[Nullable(true)]
[DataLength(20)]
public string Castingtype
{
get { return castingtype; }
set { castingtype = 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; }
}
///
/// 管坯直径
///
[Description("管坯直径")]
[Nullable(true)]
[DataLength(10)]
public string DiameterGp
{
get { return diameterGp; }
set { diameterGp = value; }
}
///
/// 轧管产线
///
private string plineCode = "";
///
/// 轧管产线
///
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 合同紧急度
///
private string priority = "";
///
/// 合同紧急度
///
public string Priority
{
get { return priority; }
set { priority = value; }
}
///
/// 紧急度备注
///
private string priorityMemo = "";
///
/// 紧急度备注
///
public string PriorityMemo
{
get { return priorityMemo; }
set { priorityMemo = value; }
}
private string gowhereName = "";
///
/// 物流去向
///
public string GowhereName
{
get { return gowhereName; }
set { gowhereName = value; }
}
private string gowhereCode = "";
///
/// 物流去向
///
public string GowhereCode
{
get { return gowhereCode; }
set { gowhereCode = value; }
}
}
}