| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.PlnSaleOrd.炉计划.Entity
- {
- public class MaterialChooseEntity
- {
-
- private string materialNo="";
- [Description("物料编码")]
- public string MaterialNo
- {
- get { return materialNo; }
- set { materialNo = value; }
- }
- private string materialName = "";
- [Description("物料描述")]
- public string MaterialName
- {
- get { return materialName; }
- set { materialName = value; }
- }
- private string storageNo = "";
- [Description("仓库代码")]
- public string StorageNo
- {
- get { return storageNo; }
- set { storageNo = value; }
- }
- private string storageName = "";
- [Description("仓库")]
- public string StorageName
- {
- get { return storageName; }
- set { storageName = value; }
- }
- private string proPlanId = "";
- [Description("订单编号")]
- public string ProPlanId
- {
- get { return proPlanId; }
- set { proPlanId = value; }
- }
- private string gxPlanNo = "";
- [Description("排产序号")]
- public string GxPlanNo
- {
- get { return gxPlanNo; }
- set { gxPlanNo = value; }
- }
- private string judgeStoveNo = "";
- [Description("炉号")]
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- private string batchNo = "";
- [Description("批号")]
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- private string batchGroudNo = "";
- [Description("组号")]
- public string BatchGroudNo
- {
- get { return batchGroudNo; }
- set { batchGroudNo = value; }
- }
- private string gradecode = "";
- [Description("钢种代码")]
- public string Gradecode
- {
- get { return gradecode; }
- set { gradecode = value; }
- }
- private string gradename = "";
- [Description("钢种名称")]
- public string Gradename
- {
- get { return gradename; }
- set { gradename = value; }
- }
- private decimal? actDimater;
- [Description("外径")]
- public decimal? ActDimater
- {
- get { return actDimater; }
- set { actDimater = value; }
- }
- private decimal? actHeight;
- [Description("壁厚")]
- public decimal? ActHeight
- {
- get { return actHeight; }
- set { actHeight = value; }
- }
- private decimal? actLen;
- [Description("长度")]
- public decimal? ActLen
- {
- get { return actLen; }
- set { actLen = value; }
- }
- private decimal? actLenMin;
- [Description("长度下限")]
- public decimal? ActLenMin
- {
- get { return actLenMin; }
- set { actLenMin = value; }
- }
- private decimal? actLenMax;
- [Description("长度上限")]
- public decimal? ActLenMax
- {
- get { return actLenMax; }
- set { actLenMax = value; }
- }
- private decimal? actCount;
- [Description("支数")]
- public decimal? ActCount
- {
- get { return actCount; }
- set { actCount = value; }
- }
- private decimal? actWeight;
- [Description("重量")]
- public decimal? ActWeight
- {
- get { return actWeight; }
- set { actWeight = value; }
- }
- private string heatPlanNo = "";
- [Description("炉次计划号")]
- public string HeatPlanNo
- {
- get { return heatPlanNo; }
- set { heatPlanNo = value; }
- }
- private string productFlag = "";
- [Description("材料类别")]
- public string ProductFlag
- {
- get { return productFlag; }
- set { productFlag = value; }
- }
- private string matStatus = "";
- [Description("材料状态")]
- public string MatStatus
- {
- get { return matStatus; }
- set { matStatus = value; }
- }
- }
- }
|