using Core.StlMes.Client.Judge.Models; using Newtonsoft.Json; using System.ComponentModel; namespace Core.StlMes.Client.Judge.ViewModels { public class QcmLgJudgeCtrlEntity : QcmLgJudgeEntity { private string plineName = ""; /// /// 产线 /// [Description("产线")] [JsonProperty("plineName")] public string PlineName { get { return plineName; } set { plineName = value; } } private string judgeresultChemDesc = ""; /// /// 成分判定结果 /// [Description("成分判定结果")] [JsonProperty("judgeresultChemDesc")] public string JudgeresultChemDesc { get { return judgeresultChemDesc; } set { judgeresultChemDesc = value; } } private string judgeresultPhyDesc = ""; /// /// 理化判定结果 /// [Description("理化判定结果")] [JsonProperty("judgeresultPhyDesc")] public string JudgeresultPhyDesc { get { return judgeresultPhyDesc; } set { judgeresultPhyDesc = value; } } private string judgeresultFaceDesc = ""; /// /// 表面判定结果 /// [Description("表面判定结果")] [JsonProperty("judgeresultFaceDesc")] public string JudgeresultFaceDesc { get { return judgeresultFaceDesc; } set { judgeresultFaceDesc = value; } } private string judgeresultSpecDesc = ""; /// /// 公差判定结果 /// [Description("公差判定结果")] [JsonProperty("judgeresultSpecDesc")] public string JudgeresultSpecDesc { get { return judgeresultSpecDesc; } set { judgeresultSpecDesc = value; } } private string judgeresultDesc = ""; /// /// 综合判定结果 /// [Description("综合判定结果")] [JsonProperty("judgeresultDesc")] public string JudgeresultDesc { get { return judgeresultDesc; } set { judgeresultDesc = value; } } private string validflagDesc = ""; /// /// 有效标志 /// [Description("有效标志")] [JsonProperty("validflagDesc")] public string ValidflagDesc { get { return validflagDesc; } set { validflagDesc = value; } } } }