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.Mcp.Entity {/// /// 数据库表COUPLING_CUT_RESULT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20180117CCCC 时间:2018-08-21 /// public class CouplingCutResultEntity { /// /// 实绩编号 /// private string resultNo = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 工单号(炉次计划号+01流水) /// private string woId = ""; /// /// 切管个数 /// private decimal? qualifiedNumber = null; /// /// 加工支数 /// private decimal? cutPieces = null; /// /// 废品量 /// private decimal? rejectedPcs = null; /// /// 废品原因 /// private string rejectedReason = ""; /// /// 盈亏个数PRALO_PCS /// private decimal? praloPcs = null; /// /// 采集方式(0-接口采集,1-人工录入) /// private string colMode = ""; /// /// 采集/录入时间 /// private string colTime = ""; /// /// 操作人 /// private string colUser = ""; /// /// 操作班次 /// private string colShift = ""; /// /// 操作班组 /// private string colGroup = ""; /// /// 机床编号 /// private string machineNo = ""; /// /// 带锯料 /// private string isRemaining = ""; /// /// 黄漆长度 /// private decimal? lvalidLength = null; /// /// 是否压印 /// private string isEmbossed = ""; /// /// 压印信息 /// private string embContent = ""; /// /// 压印个数 /// private decimal? embCount = null; /// /// 粗加工个数 /// private decimal? roughmachCount = null; /// /// 是否粗加工 /// private string isRoughmach = ""; /// /// 是否全项委托(0否,1是) /// private string ifAllOutWork = ""; /// /// 操作时间 /// private string createTime = ""; /// /// 操作工 /// private string colOperator = ""; /// /// 离线支数 /// private decimal? offNum = null; /// /// 是否监制 /// private string ifMonitorJg = ""; /// /// 监制编号 /// private string prdcrNo = ""; /// /// 产线描述 /// private string plineName = ""; ///确认 private string confirm = ""; [Description("确认")] [Nullable(true)] [DataLength(1)] public string Confirm { get { return confirm; } set { confirm = value; } } ///备注 private string memo = ""; [Description("备注")] [Nullable(true)] [DataLength(20)] public string Memo { get { return memo; } set { memo = value; } } /// /// 炉号JUDGE_STOVE_NO /// private string judgeStoveNo = ""; /// /// 炉号 /// [Description("炉号")] [Nullable(true)] [DataLength(20)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 批号BATCH_NO /// private string batchNo = ""; /// /// 炉号 /// [Description("批号")] [Nullable(true)] [DataLength(20)] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 实绩编号 /// [Description("实绩编号")] [Nullable(false)] [DataLength(20)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 工单号(炉次计划号+01流水) /// [Description("工单号")] [Nullable(false)] [DataLength(40)] public string WoId { get { return woId; } set { woId = value; } } /// /// 切管个数 /// [Description("切管个数")] [Nullable(true)] [DataLength(6)] public decimal? QualifiedNumber { get { return qualifiedNumber; } set { qualifiedNumber = value; } } /// /// 盈亏个数PRALO_PCS /// [Description("盈亏个数")] [Nullable(true)] [DataLength(6)] public decimal? PraloPcs { get { return praloPcs; } set { praloPcs = value; } } /// /// 加工支数 /// [Description("加工支数")] [Nullable(true)] [DataLength(6)] public decimal? CutPieces { get { return cutPieces; } set { cutPieces = value; } } /// /// 废品量 /// [Description("废品量")] [Nullable(true)] [DataLength(6)] public decimal? RejectedPcs { get { return rejectedPcs; } set { rejectedPcs = value; } } /// /// 废品原因 /// [Description("废品原因")] [Nullable(true)] [DataLength(20)] public string RejectedReason { get { return rejectedReason; } set { rejectedReason = value; } } /// /// 采集方式(0-接口采集,1-人工录入) /// [Description("采集方式")] [Nullable(true)] [DataLength(1)] public string ColMode { get { return colMode; } set { colMode = value; } } /// /// 采集/录入时间 /// [Description("录入时间")] [Nullable(true)] public string ColTime { get { return colTime; } set { colTime = value; } } /// /// 操作人 /// [Description("操作人")] [Nullable(true)] [DataLength(20)] public string ColUser { get { return colUser; } set { colUser = value; } } /// /// 操作班次 /// [Description("操作班次")] [Nullable(true)] [DataLength(1)] public string ColShift { get { return colShift; } set { colShift = value; } } /// /// 操作班组 /// [Description("操作班组")] [Nullable(true)] [DataLength(1)] public string ColGroup { get { return colGroup; } set { colGroup = value; } } /// /// 机床编号 /// [Description("机床编号")] [Nullable(true)] [DataLength(20)] public string MachineNo { get { return machineNo; } set { machineNo = value; } } /// /// 带锯料 /// [Description("带锯料")] [Nullable(true)] [DataLength(1)] public string IsRemaining { get { return isRemaining; } set { isRemaining = value; } } /// /// 黄漆长度 /// [Description("黄漆长度")] [Nullable(true)] [DataLength(6)] public decimal? LvalidLength { get { return lvalidLength; } set { lvalidLength = value; } } /// /// 是否压印 /// [Description("是否压印")] [Nullable(true)] [DataLength(1)] public string IsEmbossed { get { return isEmbossed; } set { isEmbossed = value; } } /// /// 压印信息 /// [Description("压印信息")] [Nullable(true)] [DataLength(100)] public string EmbContent { get { return embContent; } set { embContent = value; } } /// /// 压印个数 /// [Description("压印个数")] [Nullable(true)] [DataLength(6)] public decimal? EmbCount { get { return embCount; } set { embCount = value; } } /// /// 粗加工个数 /// [Description("粗加工个数")] [Nullable(true)] [DataLength(6)] public decimal? RoughmachCount { get { return roughmachCount; } set { roughmachCount = value; } } /// /// 是否粗加工 /// [Description("是否粗加工")] [Nullable(true)] [DataLength(1)] public string IsRoughmach { get { return isRoughmach; } set { isRoughmach = value; } } /// /// 是否全项委托(0否,1是) /// [Description("是否全项委托")] [Nullable(true)] [DataLength(1)] public string IfAllOutWork { get { return ifAllOutWork; } set { ifAllOutWork = value; } } /// /// 操作时间 /// [Description("操作时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 操作工 /// [Description("操作工")] [Nullable(true)] [DataLength(20)] public string ColOperator { get { return colOperator; } set { colOperator = value; } } /// /// 离线支数 /// [Description("离线个数")] [Nullable(true)] [DataLength(6)] public decimal? OffNum { get { return offNum; } set { offNum = value; } } /// /// 是否监制 /// [Description("是否监制")] [Nullable(true)] [DataLength(1)] public string IfMonitorJg { get { return ifMonitorJg; } set { ifMonitorJg = value; } } /// /// 监制编号 /// [Description("监制编号")] [Nullable(true)] [DataLength(40)] public string PrdcrNo { get { return prdcrNo; } set { prdcrNo = value; } } /// /// 产线描述 /// [Description("产线描述")] [Nullable(true)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } } }