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.PlnSaleOrd.炼钢计划.entity { /// /// 数据库表IMP_FRMDISPATCH所对应的实体类(生成工具:代码生成工具3.0) /// 作者:LAPTOP-I2IGVKJC 时间:2022-06-22 /// public class ImpFrmdispatchEntity { /// /// 生产日期 /// private string proMonth = ""; /// /// 浇次号 /// private string castNo = ""; /// /// 浇次内顺序号 /// private string castSeq = ""; /// /// 炉次号 /// private string heatno = ""; /// /// 电炉产线 /// private string heatLine = ""; /// /// 铸造产线 /// private string cmmLine = ""; /// /// 指令内容 /// private string memo = ""; /// /// 工序点执行状态 /// private string heatState = ""; /// /// 操作人 /// private string optpersonnel = ""; /// /// 操作时间 /// private string operationdate = ""; /// /// 消息ID /// private string msgId = ""; /// /// 消息发送时刻 /// private string msgTime = ""; /// /// 处理标志 I:Insert、U:Update、D:Delete /// private string msgFlag = "I"; /// /// 读取标志 N:未读、S:读取成功、F:读取失败 /// private string readFlag = "N"; /// /// 读取失败原因 /// private string failReason = ""; /// /// 生产日期 /// [Description("生产日期")] [Nullable(false)] public string ProMonth { get { return proMonth; } set { proMonth = value; } } /// /// 浇次号 /// [Description("浇次号")] [Nullable(false)] [DataLength(20)] public string CastNo { get { return castNo; } set { castNo = value; } } /// /// 浇次内顺序号 /// [Description("浇次内顺序号")] [Nullable(false)] [DataLength(20)] public string CastSeq { get { return castSeq; } set { castSeq = value; } } /// /// 炉次号 /// [Description("炉次号")] [Nullable(false)] [DataLength(20)] public string Heatno { get { return heatno; } set { heatno = value; } } /// /// 电炉产线 /// [Description("电炉产线")] [Nullable(true)] [DataLength(50)] public string HeatLine { get { return heatLine; } set { heatLine = value; } } /// /// 铸造产线 /// [Description("铸造产线")] [Nullable(true)] [DataLength(50)] public string CmmLine { get { return cmmLine; } set { cmmLine = value; } } /// /// 指令内容 /// [Description("指令内容")] [Nullable(true)] [DataLength(50)] public string Memo { get { return memo; } set { memo = value; } } /// /// 工序点执行状态 /// [Description("工序点执行状态")] [Nullable(true)] [DataLength(2)] public string HeatState { get { return heatState; } set { heatState = value; } } /// /// 操作人 /// [Description("操作人")] [Nullable(true)] [DataLength(50)] public string Optpersonnel { get { return optpersonnel; } set { optpersonnel = value; } } /// /// 操作时间 /// [Description("操作时间")] [Nullable(true)] public string Operationdate { get { return operationdate; } set { operationdate = value; } } /// /// 消息ID /// [Description("消息ID")] [Nullable(true)] [DataLength(100)] public string MsgId { get { return msgId; } set { msgId = value; } } /// /// 消息发送时刻 /// [Description("消息发送时刻")] [Nullable(true)] public string MsgTime { get { return msgTime; } set { msgTime = value; } } /// /// 处理标志 I:Insert、U:Update、D:Delete /// [Description("处理标志 I:Insert、U:Update、D:Delete")] [Nullable(true)] [DataLength(2)] public string MsgFlag { get { return msgFlag; } set { msgFlag = value; } } /// /// 读取标志 N:未读、S:读取成功、F:读取失败 /// [Description("读取标志 N:未读、S:读取成功、F:读取失败")] [Nullable(true)] [DataLength(2)] public string ReadFlag { get { return readFlag; } set { readFlag = value; } } /// /// 读取失败原因 /// [Description("读取失败原因")] [Nullable(true)] [DataLength(200)] public string FailReason { get { return failReason; } set { failReason = value; } } } }