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.ZGMil.Entity { class OfflineProcessAuditEntity { /// /// 实绩编号(主键) /// private string id = ""; /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// private string resultNo = ""; /// /// 审核人1 /// private string auditMan1 = ""; /// /// 审核时间1 /// private string auditTime1 = ""; /// /// 审核状态1 /// private string auditState1 = ""; /// /// 审核部门1 /// private string auditDep1 = ""; /// /// 审核人2 /// private string auditMan2 = ""; /// /// 审核时间2 /// private string auditTime2 = ""; /// /// 审核状态2 /// private string auditState2 = ""; /// /// 审核部门2 /// private string auditDep2 = ""; /// /// 审核人3 /// private string auditMan3 = ""; /// /// 审核时间3 /// private string auditTime3 = ""; /// /// 审核状态3 /// private string auditState3 = ""; /// /// 审核部门3 /// private string auditDep3 = ""; /// /// 审核意见1 /// private string memo1 = ""; /// /// 审核意见2 /// private string memo2 = ""; /// /// 审核意见3 /// private string memo3 = ""; /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// [Description("实绩编号(机组+工序点代码+年月日+6位流水)")] [Nullable(false)] [DataLength(24)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } [Description("ID")] [Nullable(false)] [DataLength(24)] public string Id { get { return id; } set { id = value; } } /// /// 审核人1 /// [Description("审核人1")] [Nullable(true)] [DataLength(24)] public string AuditMan1 { get { return auditMan1; } set { auditMan1 = value; } } /// /// 审核时间1 /// [Description("审核时间1")] [Nullable(true)] public string AuditTime1 { get { return auditTime1; } set { auditTime1 = value; } } /// /// 审核状态1 /// [Description("审核状态1")] [Nullable(true)] [DataLength(24)] public string AuditState1 { get { return auditState1; } set { auditState1 = value; } } /// /// 审核部门1 /// [Description("审核部门1")] [Nullable(true)] [DataLength(24)] public string AuditDep1 { get { return auditDep1; } set { auditDep1 = value; } } /// /// 审核人2 /// [Description("审核人2")] [Nullable(true)] [DataLength(24)] public string AuditMan2 { get { return auditMan2; } set { auditMan2 = value; } } /// /// 审核时间2 /// [Description("审核时间2")] [Nullable(true)] public string AuditTime2 { get { return auditTime2; } set { auditTime2 = value; } } /// /// 审核状态2 /// [Description("审核状态2")] [Nullable(true)] [DataLength(24)] public string AuditState2 { get { return auditState2; } set { auditState2 = value; } } /// /// 审核部门2 /// [Description("审核部门2")] [Nullable(true)] [DataLength(24)] public string AuditDep2 { get { return auditDep2; } set { auditDep2 = value; } } /// /// 审核人3 /// [Description("审核人3")] [Nullable(true)] [DataLength(24)] public string AuditMan3 { get { return auditMan3; } set { auditMan3 = value; } } /// /// 审核时间3 /// [Description("审核时间3")] [Nullable(true)] public string AuditTime3 { get { return auditTime3; } set { auditTime3 = value; } } /// /// 审核状态3 /// [Description("审核状态3")] [Nullable(true)] [DataLength(24)] public string AuditState3 { get { return auditState3; } set { auditState3 = value; } } /// /// 审核部门3 /// [Description("审核部门3")] [Nullable(true)] [DataLength(24)] public string AuditDep3 { get { return auditDep3; } set { auditDep3 = value; } } /// /// 审核意见1 /// [Description("审核意见1")] [Nullable(true)] [DataLength(200)] public string Memo1 { get { return memo1; } set { memo1 = value; } } /// /// 审核意见2 /// [Description("审核意见2")] [Nullable(true)] [DataLength(200)] public string Memo2 { get { return memo2; } set { memo2 = value; } } /// /// 审核意见3 /// [Description("审核意见3")] [Nullable(true)] [DataLength(200)] public string Memo3 { get { return memo3; } set { memo3 = value; } } } }