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.Mcp.VRP.Entity { class BaoJiaoResultDetailEntity { /// /// 报检单号 /// private string inspectionNo = ""; /// /// 报检次数 /// private decimal? inspectionNum = null; /// /// 项目类别 /// private string projectCategory = ""; /// /// 项目名称 /// private string projectName = ""; /// /// 检验结果 /// private string result = ""; /// /// 不合格原因 /// private string reasons = ""; /// /// 备注 /// private string mome = ""; /// /// ID /// private string guid = ""; /// /// 检测值 /// private string detectionCode = ""; /// /// 报检单号 /// [Description("报检单号")] [Nullable(false)] [DataLength(20)] public string InspectionNo { get { return inspectionNo; } set { inspectionNo = value; } } /// /// 报检次数 /// [Description("报检次数")] [Nullable(true)] [DataLength(20)] public decimal? InspectionNum { get { return inspectionNum; } set { inspectionNum = value; } } /// /// 项目类别 /// [Description("项目类别")] [Nullable(true)] [DataLength(20)] public string ProjectCategory { get { return projectCategory; } set { projectCategory = value; } } /// /// 项目名称 /// [Description("项目名称")] [Nullable(true)] [DataLength(20)] public string ProjectName { get { return projectName; } set { projectName = value; } } /// /// 检验结果 /// [Description("检验结果")] [Nullable(true)] [DataLength(20)] public string Result { get { return result; } set { result = value; } } /// /// 不合格原因 /// [Description("不合格原因")] [Nullable(true)] [DataLength(200)] public string Reasons { get { return reasons; } set { reasons = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] public string Mome { get { return mome; } set { mome = value; } } /// /// ID /// [Description("ID")] [Nullable(false)] [DataLength(50)] public string Guid { get { return guid; } set { guid = value; } } /// /// 检测值 /// [Description("检测值")] [Nullable(true)] [DataLength(200)] public string DetectionCode { get { return detectionCode; } set { detectionCode = value; } } } }