using Core.Mes.Client.Comm.Attribute; using Core.StlMes.Client.Judge.Models; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Judge.ViewModels { public class QcmZgChemjudgeExceptionCtrlEntity : QcmZgChemjudgeExceptionEntity { private string judgeresultChemDesc; private string orderisunchainDesc; private string validflagDesc; /// /// 成分判定结果(4074) /// [Description("成分判定结果")] [Nullable(false)] [DataLength(20)] [JsonProperty("judgeresultChemDesc")] public string JudgeresultChemDesc { get { return judgeresultChemDesc; } set { judgeresultChemDesc = value; } } /// /// 是否脱单(1:是,0:否) /// [Description("是否脱单")] [Nullable(false)] [DataLength(1)] [JsonProperty("orderisunchainDesc")] public string OrderisunchainDesc { get { return orderisunchainDesc; } set { orderisunchainDesc = value; } } /// /// 有效标志(1:有效;0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] [JsonProperty("validflagDesc")] public string ValidflagDesc { get { return validflagDesc; } set { validflagDesc = value; } } } }