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