| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381 |
- 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.YdmStuffManage.Entity
- {
- class StlLgOfflineDetiaEntity
- {
-
- /// <summary>
- /// 顺序号
- /// </summary>
- private string sequenceno = "";
- /// <summary>
- /// 熔炼炉号
- /// </summary>
- private string stoveNo = "";
- /// <summary>
- /// 判定炉号
- /// </summary>
- private string judgeStoveNo = "";
- /// <summary>
- /// 判定炉号(序号)
- /// </summary>
- private string judgeStoveNoSeq = "";
- /// <summary>
- /// 支数
- /// </summary>
- private decimal? actCount = null;
- /// <summary>
- /// 重量
- /// </summary>
- private decimal? actWeight = null;
- /// <summary>
- /// 操作时间
- /// </summary>
- private string colTime = "";
- /// <summary>
- /// 备注
- /// </summary>
- private string remark = "";
- /// <summary>
- /// 操作人
- /// </summary>
- private string colUser = "";
- /// <summary>
- /// 操作班次
- /// </summary>
- private string colShift = "";
- /// <summary>
- /// 操作班组
- /// </summary>
- private string colGroup = "";
- /// <summary>
- /// 操作ID(年月日+5位流水)
- /// </summary>
- private string operationId = "";
- /// <summary>
- /// 厂线代码
- /// </summary>
- private string plineCode = "";
- /// <summary>
- /// 虚拟炉号
- /// </summary>
- private string furnaceno = "";
- /// <summary>
- /// 返线炉号
- /// </summary>
- private string backJudgeStoveNo = "";
- /// <summary>
- /// 铸造订单编号
- /// </summary>
- private string proPlanId = "";
- /// <summary>
- /// 工序排产序号
- /// </summary>
- private string gxPlanNo = "";
- /// <summary>
- /// 管坯需求编号
- /// </summary>
- private string gpreqId = "";
- /// <summary>
- /// 0 复检
- /// </summary>
- private string operationType = "";
- /// <summary>
- /// 倍尺数
- /// </summary>
- private decimal? fixNum = null;
- /// <summary>
- /// 单倍长度
- /// </summary>
- private decimal? fixLen = null;
- /// <summary>
- /// 长度
- /// </summary>
- private decimal? length = null;
- /// <summary>
- /// 直径
- /// </summary>
- private decimal? diameter = null;
- /// <summary>
- /// 顺序号
- /// </summary>
- [Description("顺序号")]
- [Nullable(false)]
- [DataLength(10)]
- public string Sequenceno
- {
- get { return sequenceno; }
- set { sequenceno = value; }
- }
- /// <summary>
- /// 熔炼炉号
- /// </summary>
- [Description("熔炼炉号")]
- [Nullable(false)]
- [DataLength(10)]
- public string StoveNo
- {
- get { return stoveNo; }
- set { stoveNo = value; }
- }
- /// <summary>
- /// 判定炉号
- /// </summary>
- [Description("判定炉号")]
- [Nullable(false)]
- [DataLength(6)]
- public string JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set { judgeStoveNo = value; }
- }
- /// <summary>
- /// 判定炉号
- /// </summary>
- [Description("判定炉号(序号)")]
- [Nullable(false)]
- [DataLength(20)]
- public string JudgeStoveNoSeq
- {
- get { return judgeStoveNoSeq; }
- set { judgeStoveNoSeq = value; }
- }
- /// <summary>
- /// 支数
- /// </summary>
- [Description("支数")]
- [Nullable(true)]
- [DataLength(6)]
- public decimal? ActCount
- {
- get { return actCount; }
- set { actCount = value; }
- }
- /// <summary>
- /// 重量
- /// </summary>
- [Description("重量")]
- [Nullable(true)]
- [DataLength(8)]
- public decimal? ActWeight
- {
- get { return actWeight; }
- set { actWeight = value; }
- }
- /// <summary>
- /// 操作时间
- /// </summary>
- [Description("操作时间")]
- [Nullable(true)]
- public string ColTime
- {
- get { return colTime; }
- set { colTime = value; }
- }
- /// <summary>
- /// 备注
- /// </summary>
- [Description("备注")]
- [Nullable(true)]
- [DataLength(100)]
- public string Remark
- {
- get { return remark; }
- set { remark = value; }
- }
- /// <summary>
- /// 操作人
- /// </summary>
- [Description("操作人")]
- [Nullable(true)]
- [DataLength(20)]
- public string ColUser
- {
- get { return colUser; }
- set { colUser = value; }
- }
- /// <summary>
- /// 操作班次
- /// </summary>
- [Description("操作班次")]
- [Nullable(true)]
- [DataLength(1)]
- public string ColShift
- {
- get { return colShift; }
- set { colShift = value; }
- }
- /// <summary>
- /// 操作班组
- /// </summary>
- [Description("操作班组")]
- [Nullable(true)]
- [DataLength(1)]
- public string ColGroup
- {
- get { return colGroup; }
- set { colGroup = value; }
- }
- /// <summary>
- /// 操作ID(年月日+5位流水)
- /// </summary>
- [Description("操作ID(年月日+5位流水)")]
- [Nullable(true)]
- [DataLength(20)]
- public string OperationId
- {
- get { return operationId; }
- set { operationId = value; }
- }
- /// <summary>
- /// 厂线代码
- /// </summary>
- [Description("厂线代码")]
- [Nullable(true)]
- [DataLength(20)]
- public string PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /// <summary>
- /// 虚拟炉号
- /// </summary>
- [Description("虚拟炉号")]
- [Nullable(false)]
- [DataLength(20)]
- public string Furnaceno
- {
- get { return furnaceno; }
- set { furnaceno = value; }
- }
- /// <summary>
- /// 返线炉号
- /// </summary>
- [Description("返线炉号")]
- [Nullable(true)]
- [DataLength(20)]
- public string BackJudgeStoveNo
- {
- get { return backJudgeStoveNo; }
- set { backJudgeStoveNo = value; }
- }
- /// <summary>
- /// 铸造订单编号
- /// </summary>
- [Description("铸造订单编号")]
- [Nullable(false)]
- [DataLength(20)]
- public string ProPlanId
- {
- get { return proPlanId; }
- set { proPlanId = value; }
- }
- /// <summary>
- /// 工序排产序号
- /// </summary>
- [Description("工序排产序号")]
- [Nullable(false)]
- [DataLength(10)]
- public string GxPlanNo
- {
- get { return gxPlanNo; }
- set { gxPlanNo = value; }
- }
- /// <summary>
- /// 管坯需求编号
- /// </summary>
- [Description("管坯需求编号")]
- [Nullable(true)]
- [DataLength(20)]
- public string GpreqId
- {
- get { return gpreqId; }
- set { gpreqId = value; }
- }
- /// <summary>
- /// 0 复检
- /// </summary>
- [Description("操作类型")]
- [Nullable(true)]
- [DataLength(1)]
- public string OperationType
- {
- get { return operationType; }
- set { operationType = value; }
- }
- /// <summary>
- /// 倍尺数
- /// </summary>
- [Description("倍尺数")]
- [Nullable(false)]
- [DataLength(1)]
- public decimal? FixNum
- {
- get { return fixNum; }
- set { fixNum = value; }
- }
- /// <summary>
- /// 单倍长度
- /// </summary>
- [Description("单倍长度")]
- [Nullable(true)]
- [DataLength(5)]
- public decimal? FixLen
- {
- get { return fixLen; }
- set { fixLen = value; }
- }
- /// <summary>
- /// 长度
- /// </summary>
- [Description("长度")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Length
- {
- get { return length; }
- set { length = value; }
- }
- /// <summary>
- /// 直径
- /// </summary>
- [Description("直径")]
- [Nullable(true)]
- [DataLength(22)]
- public decimal? Diameter
- {
- get { return diameter; }
- set { diameter = value; }
- }
- }
- }
|