using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.Mcp.Control.Entity { /// /// 数据库表HTT_REPORT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:朱少波 时间:2018-12-03 /// public class HttReportEntity { /// /// 产线代码 /// private string plineCode = ""; /// /// 报表编号 /// private string reportNo = ""; /// /// 新报表编号 /// private string reportNoNew = ""; /// /// 新报表编号生效时间 /// private string reportNoTime = ""; /// /// 报表名称 /// private string reportName = ""; /// /// 操作人 /// private string colUser = ""; /// /// 操作时间 /// private string colTime = ""; /// /// 备注 /// private string remark = ""; /// /// 产生岗位 /// private string generateStation = ""; /// /// 接收岗位 /// private string receivingStation = ""; /// /// 保存岗位 /// private string saveStation = ""; /// /// 保存期限 /// private string storageLife = ""; /// /// 媒介(纸质/电子版) /// private string intermediary = ""; /// /// 报表英文名字 /// private string englishName = ""; /// /// 报表类型(0:管体机探1:管端手探 2:半成品缴库单 3:热处理表检 4涡流 5拧接 6水压 7通径 8倒棱 ) /// private string reportType = ""; /// /// 机器编号 /// private string machineNo = ""; /// /// 说明 /// private string instruction = ""; /// /// 使用的报表模板_ 暂提供给通用探伤 /// private string reportCpt = ""; /// /// 产线代码 /// [Description("产线代码")] [Nullable(false)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 报表编号 /// [Description("报表编号")] [Nullable(false)] [DataLength(40)] public string ReportNo { get { return reportNo; } set { reportNo = value; } } /// /// 新报表编号 /// [Description("新报表编号")] [Nullable(false)] [DataLength(40)] public string ReportNoNew { get { return reportNoNew; } set { reportNoNew = value; } } /// /// 新报表编号生效时间 /// [Description("新报表编号生效时间")] [Nullable(false)] [DataLength(20)] public string ReportNoTime { get { return reportNoTime; } set { reportNoTime = value; } } /// /// 报表名称 /// [Description("报表名称")] [Nullable(false)] [DataLength(100)] public string ReportName { get { return reportName; } set { reportName = value; } } /// /// 操作人 /// [Description("操作人")] [Nullable(true)] [DataLength(20)] public string ColUser { get { return colUser; } set { colUser = value; } } /// /// 操作时间 /// [Description("操作时间")] [Nullable(true)] public string ColTime { get { return colTime; } set { colTime = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(100)] public string Remark { get { return remark; } set { remark = value; } } /// /// 产生岗位 /// [Description("产生岗位")] [Nullable(true)] [DataLength(40)] public string GenerateStation { get { return generateStation; } set { generateStation = value; } } /// /// 接收岗位 /// [Description("接收岗位")] [Nullable(true)] [DataLength(40)] public string ReceivingStation { get { return receivingStation; } set { receivingStation = value; } } /// /// 保存岗位 /// [Description("保存岗位")] [Nullable(true)] [DataLength(40)] public string SaveStation { get { return saveStation; } set { saveStation = value; } } /// /// 保存期限 /// [Description("保存期限")] [Nullable(true)] [DataLength(40)] public string StorageLife { get { return storageLife; } set { storageLife = value; } } /// /// 媒介(纸质/电子版) /// [Description("媒介(纸质/电子版)")] [Nullable(true)] [DataLength(40)] public string Intermediary { get { return intermediary; } set { intermediary = value; } } /// /// 报表英文名字 /// [Description("报表英文名字")] [Nullable(true)] [DataLength(100)] public string EnglishName { get { return englishName; } set { englishName = value; } } /// /// 报表类型(0:管体机探1:管端手探 2:半成品缴库单 3:热处理表检 4涡流 5拧接 6水压 7通径 8倒棱 ) /// [Description("报表类型(0:管体机探1:管端手探 2:半成品缴库单 3:热处理表检 4涡流 5拧接 6水压 7通径 8倒棱 )")] [Nullable(false)] [DataLength(2)] public string ReportType { get { return reportType; } set { reportType = value; } } /// /// 机器编号 /// [Description("机器编号")] [Nullable(true)] [DataLength(20)] public string MachineNo { get { return machineNo; } set { machineNo = value; } } /// /// 说明 /// [Description("说明")] [Nullable(true)] [DataLength(400)] public string Instruction { get { return instruction; } set { instruction = value; } } /// /// 使用的报表模板_ 暂提供给通用探伤 /// [Description("使用的报表模板_ 暂提供给通用探伤")] [Nullable(true)] [DataLength(400)] public string ReportCpt { get { return reportCpt; } set { reportCpt = value; } } } }