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 QcmZgPhyResultCtrlEntity : QcmZgPhyresultEntity { /// /// 有效标志(1:有效,0:无效) /// private string validflagDesc = ""; /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] [JsonProperty("validflagDesc")] public string ValidflagDesc { get { return validflagDesc; } set { validflagDesc = value; } } } }