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.Judge.Models { /// /// 数据库表QCM_PROBLEM_HANDLING所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-I2IGVKJC 时间:2024-01-12 /// public class QcmProblemHandlingEntity { /// /// 炉号 /// private string judgeStoveNo = ""; /// /// 批号 /// private string batchNo = ""; /// /// 组号 /// private string batchGroudNo = ""; /// /// 工序代码(A\B\C\D.....) /// private string processCode = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 生产产线名称 /// private string plineName = ""; /// /// 提出人 /// private string applyName = ""; /// /// 提出时间 /// private string applyTime = ""; /// /// 提出问题描述 /// private string applyDesc = ""; /// /// 处理人 /// private string handleName = ""; /// /// 处理时间 /// private string handleTime = ""; /// /// 措施及处置结果描述 /// private string handleDesc = ""; /// /// 生产合同号(合同号) /// private string proOrderNo = ""; /// /// 交货行主键 /// private string ordLnDlyPk = ""; /// /// 是否传递下工序 0否 1是 /// private string processNextFlag = ""; private string processCodeNext = ""; /// /// 确认人 /// private String confirmName = ""; /// /// 确认时间 /// private String confirmTime = ""; /// /// 处置结果 /// private String handleResult = ""; /// /// 炉号 /// [Description("炉号")] [Nullable(false)] [DataLength(20)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 批号 /// [Description("批号")] [Nullable(false)] [DataLength(20)] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 组号 /// [Description("组号")] [Nullable(false)] [DataLength(3)] public string BatchGroudNo { get { return batchGroudNo; } set { batchGroudNo = value; } } /// /// 工序代码(A\B\C\D.....) /// [Description("工序代码")] [Nullable(false)] [DataLength(1)] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 生产产线名称 /// [Description("生产产线名称")] [Nullable(true)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 提出人 /// [Description("提出人")] [Nullable(true)] [DataLength(20)] public string ApplyName { get { return applyName; } set { applyName = value; } } /// /// 提出时间 /// [Description("提出时间")] [Nullable(true)] public string ApplyTime { get { return applyTime; } set { applyTime = value; } } /// /// 提出问题描述 /// [Description("提出问题描述")] [Nullable(true)] [DataLength(255)] public string ApplyDesc { get { return applyDesc; } set { applyDesc = value; } } /// /// 处理人 /// [Description("处理人")] [Nullable(true)] [DataLength(20)] public string HandleName { get { return handleName; } set { handleName = value; } } /// /// 处理时间 /// [Description("处理时间")] [Nullable(true)] public string HandleTime { get { return handleTime; } set { handleTime = value; } } /// /// 措施及处置结果描述 /// [Description("处置措施")] [Nullable(true)] [DataLength(255)] public string HandleDesc { get { return handleDesc; } set { handleDesc = value; } } /// /// 生产合同号(合同号) /// [Description("生产合同号")] [Nullable(true)] [DataLength(25)] public string ProOrderNo { get { return proOrderNo; } set { proOrderNo = value; } } /// /// 交货行主键 /// [Description("交货行主键")] [Nullable(true)] [DataLength(50)] public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } /// /// 是否传递下工序 0否 1是 /// [Description("是否传递下工序")] [Nullable(true)] [DataLength(1)] public string ProcessNextFlag { get { return processNextFlag; } set { processNextFlag = value; } } [Description("下工序")] [Nullable(false)] [DataLength(20)] public string ProcessCodeNext { get { return processCodeNext; } set { processCodeNext = value; } } [Description("确认人")] [Nullable(false)] [DataLength(20)] public string ConfirmName { get { return confirmName; } set { confirmName = value; } } [Description("确认时间")] [Nullable(false)] [DataLength(20)] public string ConfirmTime { get { return confirmTime; } set { confirmTime = value; } } [Description("处置结果")] [Nullable(false)] [DataLength(20)] public string HandleResult { get { return handleResult; } set { handleResult = value; } } } }