| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.ZGMil.Entity
- {
- class MilOfflineResultDetiaEntity
- {
- /// <summary>
- /// 生产批号
- /// </summary>
- private object lotNo;
- /// <summary>
- /// 判定炉号
- /// </summary>
- private object judgeStoveNo;
- /// <summary>
- /// 返线炉号
- /// </summary>
- private object backJudgeStoveNo;
- /// <summary>
- /// 操作类型(0,组炉,1,探伤返线,2复检委托,3,交库)
- /// </summary>
- private object operationType;
- /// <summary>
- /// 支数
- /// </summary>
- private object actCount;
- /// <summary>
- /// 重量
- /// </summary>
- private object actWeight;
- /// <summary>
- /// 操作时间
- /// </summary>
- private object colTime;
- /// <summary>
- /// 备注
- /// </summary>
- private object remark;
- /// <summary>
- /// 操作人
- /// </summary>
- private object colUser;
- /// <summary>
- /// 操作班次
- /// </summary>
- private object colShift;
- /// <summary>
- /// 操作班组
- /// </summary>
- private object colGroup;
- /// <summary>
- /// 操作ID(年月日+5位流水)
- /// </summary>
- private object operationId;
- /// <summary>
- /// 厂线代码
- /// </summary>
- private object plineCode;
- /// <summary>
- /// ID
- /// </summary>
- private object id;
- /// <summary>
- /// 下线类型
- /// </summary>
- private object offlineType;
-
- public MilOfflineResultDetiaEntity()
- {
- offlineType = "";
- lotNo = "";
- judgeStoveNo = "";
- operationType = "";
- actCount = "";
- actWeight = "";
- colTime = "";
- remark = "";
- colUser = "";
- colShift = "";
- colGroup = "";
- operationId = "";
- plineCode = "";
- id = "";
- backJudgeStoveNo = "";
- }
- /// <summary>
- /// 下线类型
- /// </summary>
- [Description("下线类型")]
- public object OfflineType
- {
- get { return offlineType; }
- set
- {
- if (value == null)
- {
- offlineType = DBNull.Value;
- }
- else
- {
- offlineType = value;
- }
- }
- }
- /// <summary>
- /// ID
- /// </summary>
- [Description("ID")]
- public object Id
- {
- get { return id; }
- set
- {
- if (value == null)
- {
- id = DBNull.Value;
- }
- else
- {
- id = value;
- }
- }
- }
- /// <summary>
- /// 生产批号
- /// </summary>
- [Description("生产批号")]
- public object LotNo
- {
- get { return lotNo; }
- set
- {
- if (value == null)
- {
- lotNo = DBNull.Value;
- }
- else
- {
- lotNo = value;
- }
- }
- }
- /// <summary>
- /// 判定炉号
- /// </summary>
- [Description("判定炉号")]
- public object JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set
- {
- if (value == null)
- {
- judgeStoveNo = DBNull.Value;
- }
- else
- {
- judgeStoveNo = value;
- }
- }
- }
- /// <summary>
- /// 跟队炉号
- /// </summary>
- [Description("跟队炉号")]
- public object BackJudgeStoveNo
- {
- get { return backJudgeStoveNo; }
- set
- {
- if (value == null)
- {
- backJudgeStoveNo = DBNull.Value;
- }
- else
- {
- backJudgeStoveNo = value;
- }
- }
- }
- /// <summary>
- /// 操作类型(0,组炉,1,探伤返线,2复检委托,3,交库)
- /// </summary>
- [Description("操作类型")]
- public object OperationType
- {
- get { return operationType; }
- set
- {
- if (value == null)
- {
- operationType = DBNull.Value;
- }
- else
- {
- operationType = value;
- }
- }
- }
- /// <summary>
- /// 支数
- /// </summary>
- [Description("支数")]
- public object ActCount
- {
- get { return actCount; }
- set
- {
- if (value == null)
- {
- actCount = DBNull.Value;
- }
- else
- {
- actCount = value;
- }
- }
- }
- /// <summary>
- /// 重量
- /// </summary>
- [Description("重量")]
- public object ActWeight
- {
- get { return actWeight; }
- set
- {
- if (value == null)
- {
- actWeight = DBNull.Value;
- }
- else
- {
- actWeight = value;
- }
- }
- }
- /// <summary>
- /// 操作时间
- /// </summary>
- [Description("操作时间")]
- public object ColTime
- {
- get { return colTime; }
- set
- {
- if (value == null)
- {
- colTime = DBNull.Value;
- }
- else
- {
- colTime = value;
- }
- }
- }
- /// <summary>
- /// 备注
- /// </summary>
- [Description("备注")]
- public object Remark
- {
- get { return remark; }
- set
- {
- if (value == null)
- {
- remark = DBNull.Value;
- }
- else
- {
- remark = value;
- }
- }
- }
- /// <summary>
- /// 操作人
- /// </summary>
- [Description("操作人")]
- public object ColUser
- {
- get { return colUser; }
- set
- {
- if (value == null)
- {
- colUser = DBNull.Value;
- }
- else
- {
- colUser = value;
- }
- }
- }
- /// <summary>
- /// 操作班次
- /// </summary>
- [Description("操作班次")]
- public object ColShift
- {
- get { return colShift; }
- set
- {
- if (value == null)
- {
- colShift = DBNull.Value;
- }
- else
- {
- colShift = value;
- }
- }
- }
- /// <summary>
- /// 操作班组
- /// </summary>
- [Description("操作班组")]
- public object ColGroup
- {
- get { return colGroup; }
- set
- {
- if (value == null)
- {
- colGroup = DBNull.Value;
- }
- else
- {
- colGroup = value;
- }
- }
- }
- /// <summary>
- /// 操作ID(年月日+5位流水)
- /// </summary>
- [Description("操作ID(年月日+5位流水)")]
- public object OperationId
- {
- get { return operationId; }
- set
- {
- if (value == null)
- {
- operationId = DBNull.Value;
- }
- else
- {
- operationId = value;
- }
- }
- }
- /// <summary>
- /// 厂线代码
- /// </summary>
- [Description("厂线代码")]
- public object PlineCode
- {
- get { return plineCode; }
- set
- {
- if (value == null)
- {
- plineCode = DBNull.Value;
- }
- else
- {
- plineCode = value;
- }
- }
- }
- }
- }
|