| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475 |
- 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.ZGMil.Entity
- {
- class PortMilBatchSampleResultEntity
- {
- /// <summary>
- /// 从MIL_PLAN 表带过来的ID
- /// </summary>
- private string planId = "";
- /// <summary>
- /// 生产批号
- /// </summary>
- private string lotNo = "";
- /// <summary>
- /// 熔炼炉号
- /// </summary>
- private string stoveNo = "";
- /// <summary>
- /// 判定炉号
- /// </summary>
- private string judgeStoveNo = "";
- /// <summary>
- /// 组号
- /// </summary>
- private string groupNo = "";
- /// <summary>
- /// 产线代码
- /// </summary>
- private string plineCode = "";
- /// <summary>
- /// 性能批号
- /// </summary>
- private string batchNo = "";
- /// <summary>
- /// 序号
- /// </summary>
- private decimal? seq = null;
- /// <summary>
- /// 子管号
- /// </summary>
- private string matNo = "";
- /// <summary>
- /// 是否样管
- /// </summary>
- private string isSamplePipe = "";
- /// <summary>
- /// 是否有效(1有效)
- /// </summary>
- private string isValid = "";
- /// <summary>
- /// 备注
- /// </summary>
- private string remark = "";
- /// <summary>
- /// 样管长度(mm)
- /// </summary>
- private string samplePipeLen = "";
- /// <summary>
- /// 取样人
- /// </summary>
- private string getSampleName = "";
- /// <summary>
- /// 取样时间
- /// </summary>
- private string getSampleTime = "";
- /// <summary>
- /// 操作班次
- /// </summary>
- private string getSampleShift = "";
- /// <summary>
- /// 班次班组
- /// </summary>
- private string getSampleClass = "";
- /// <summary>
- /// 定尺长度
- /// </summary>
- private decimal? orderLength = null;
- /// <summary>
- /// 理论重量
- /// </summary>
- private decimal? actTheoryWeight = null;
- /// <summary>
- /// 支数
- /// </summary>
- private decimal? actCount = null;
- /// <summary>
- /// 创建时间
- /// </summary>
- private string crateTime = "";
- /// <summary>
- /// 状态(0-合格 1-热区剔除 2-冷区剔除3-下线 4-返线)
- /// </summary>
- private string status = "";
- /// <summary>
- /// 母管号
- /// </summary>
- private string mMatNo = "";
- /// <summary>
- /// 组炉标识(0,未组炉 1-组炉)
- /// </summary>
- private string groupFlag = "";
- /// <summary>
- /// 操作工序(0-上料 2-加热炉 3-穿孔 4-连轧 5-再加热炉 6-定径 7分切 9矫直 10-探伤 11-人工质检12-交库)
- /// </summary>
- private string opProcess = "";
- /// <summary>
- /// 返线工序(10-探伤返线 11-复检)
- /// </summary>
- private string backProcess = "";
- /// <summary>
- /// 母坯号
- /// </summary>
- private string mMMatNo = "";
- /// <summary>
- /// 是否入库(0-未入库 1-已入库)
- /// </summary>
- private string instoreFlag = "";
- /// <summary>
- /// 交库批号(无用)
- /// </summary>
- private string realBatchNo = "";
- /// <summary>
- /// 从MIL_PLAN 表带过来的ID
- /// </summary>
- [Description("从MIL_PLAN 表带过来的ID")]
- [Nullable(false)]
- [DataLength(20)]
- public string PlanId
- {
- get { return planId; }
- set { planId = value; }
- }
- /// <summary>
- /// 生产批号
- /// </summary>
- [Description("生产批号")]
- [Nullable(false)]
- [DataLength(20)]
- public string LotNo
- {
- get { return lotNo; }
- set { lotNo = value; }
- }
- /// <summary>
- /// 熔炼炉号
- /// </summary>
- [Description("熔炼炉号")]
- [Nullable(true)]
- [DataLength(20)]
- public string StoveNo
- {
- get { return stoveNo; }
- set { stoveNo = value; }
- }
- /// <summary>
- /// 判定炉号
- /// </summary>
- [Description("判定炉号")]
- [Nullable(false)]
- [DataLength(10)]
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- /// <summary>
- /// 组号
- /// </summary>
- [Description("组号")]
- [Nullable(true)]
- [DataLength(6)]
- public string GroupNo
- {
- get { return groupNo; }
- set { groupNo = value; }
- }
- /// <summary>
- /// 产线代码
- /// </summary>
- [Description("产线代码")]
- [Nullable(true)]
- [DataLength(20)]
- public string PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /// <summary>
- /// 性能批号
- /// </summary>
- [Description("批号")]
- [Nullable(true)]
- [DataLength(20)]
- public string BatchNo
- {
- get { return batchNo; }
- set { batchNo = value; }
- }
- /// <summary>
- /// 序号
- /// </summary>
- [Description("序号")]
- [Nullable(false)]
- [DataLength(6)]
- public decimal? Seq
- {
- get { return seq; }
- set { seq = value; }
- }
- /// <summary>
- /// 子管号
- /// </summary>
- [Description("子管号")]
- [Nullable(true)]
- [DataLength(20)]
- public string MatNo
- {
- get { return matNo; }
- set { matNo = value; }
- }
- /// <summary>
- /// 是否样管
- /// </summary>
- [Description("是否样管")]
- [Nullable(true)]
- [DataLength(1)]
- public string IsSamplePipe
- {
- get { return isSamplePipe; }
- set { isSamplePipe = value; }
- }
- /// <summary>
- /// 是否有效(1有效)
- /// </summary>
- [Description("是否有效(1有效)")]
- [Nullable(true)]
- [DataLength(1)]
- public string IsValid
- {
- get { return isValid; }
- set { isValid = value; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- [Description("备注")]
- [Nullable(true)]
- [DataLength(400)]
- public string Remark
- {
- get { return remark; }
- set { remark = value; }
- }
- /// <summary>
- /// 样管长度(mm)
- /// </summary>
- [Description("样管长度(mm)")]
- [Nullable(true)]
- [DataLength(20)]
- public string SamplePipeLen
- {
- get { return samplePipeLen; }
- set { samplePipeLen = value; }
- }
- /// <summary>
- /// 取样人
- /// </summary>
- [Description("取样人")]
- [Nullable(true)]
- [DataLength(20)]
- public string GetSampleName
- {
- get { return getSampleName; }
- set { getSampleName = value; }
- }
- /// <summary>
- /// 取样时间
- /// </summary>
- [Description("取样时间")]
- [Nullable(true)]
- public string GetSampleTime
- {
- get { return getSampleTime; }
- set { getSampleTime = value; }
- }
- /// <summary>
- /// 操作班次
- /// </summary>
- [Description("操作班次")]
- [Nullable(true)]
- [DataLength(10)]
- public string GetSampleShift
- {
- get { return getSampleShift; }
- set { getSampleShift = value; }
- }
- /// <summary>
- /// 班次班组
- /// </summary>
- [Description("班次班组")]
- [Nullable(true)]
- [DataLength(5)]
- public string GetSampleClass
- {
- get { return getSampleClass; }
- set { getSampleClass = value; }
- }
- /// <summary>
- /// 定尺长度
- /// </summary>
- [Description("定尺长度(m)")]
- [Nullable(true)]
- [DataLength(8)]
- public decimal? OrderLength
- {
- get { return orderLength; }
- set { orderLength = value; }
- }
- /// <summary>
- /// 理论重量
- /// </summary>
- [Description("理论重量")]
- [Nullable(true)]
- [DataLength(9)]
- public decimal? ActTheoryWeight
- {
- get { return actTheoryWeight; }
- set { actTheoryWeight = value; }
- }
- /// <summary>
- /// 支数
- /// </summary>
- [Description("支数")]
- [Nullable(true)]
- [DataLength(3)]
- public decimal? ActCount
- {
- get { return actCount; }
- set { actCount = value; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Description("创建时间")]
- [Nullable(true)]
- public string CrateTime
- {
- get { return crateTime; }
- set { crateTime = value; }
- }
- /// <summary>
- /// 状态(0-合格 1-热区剔除 2-冷区剔除3-下线 4-返线)
- /// </summary>
- [Description("状态")]
- [Nullable(true)]
- [DataLength(1)]
- public string Status
- {
- get { return status; }
- set { status = value; }
- }
- /// <summary>
- /// 母管号
- /// </summary>
- [Description("母管号")]
- [Nullable(true)]
- [DataLength(20)]
- public string MMatNo
- {
- get { return mMatNo; }
- set { mMatNo = value; }
- }
- /// <summary>
- /// 组炉标识(0,未组炉 1-组炉)
- /// </summary>
- [Description("组炉标识")]
- [Nullable(true)]
- [DataLength(1)]
- public string GroupFlag
- {
- get { return groupFlag; }
- set { groupFlag = value; }
- }
- /// <summary>
- /// 操作工序(0-上料 2-加热炉 3-穿孔 4-连轧 5-再加热炉 6-定径 7分切 9矫直 10-探伤 11-人工质检12-交库)
- /// </summary>
- [Description("操作工序")]
- [Nullable(true)]
- [DataLength(2)]
- public string OpProcess
- {
- get { return opProcess; }
- set { opProcess = value; }
- }
- /// <summary>
- /// 返线工序(10-探伤返线 11-复检)
- /// </summary>
- [Description("返线工序")]
- [Nullable(true)]
- [DataLength(2)]
- public string BackProcess
- {
- get { return backProcess; }
- set { backProcess = value; }
- }
- /// <summary>
- /// 母坯号
- /// </summary>
- [Description("母坯号")]
- [Nullable(true)]
- [DataLength(20)]
- public string MMMatNo
- {
- get { return mMMatNo; }
- set { mMMatNo = value; }
- }
- /// <summary>
- /// 是否入库(0-未入库 1-已入库)
- /// </summary>
- [Description("是否入库")]
- [Nullable(true)]
- [DataLength(1)]
- public string InstoreFlag
- {
- get { return instoreFlag; }
- set { instoreFlag = value; }
- }
- /// <summary>
- /// 交库批号(无用)
- /// </summary>
- [Description("交库批号(无用)")]
- [Nullable(true)]
- [DataLength(20)]
- public string RealBatchNo
- {
- get { return realBatchNo; }
- set { realBatchNo = value; }
- }
- }
- }
|