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