| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- 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;
- /// <summary>
- /// 成分判定结果(4074)
- /// </summary>
- [Description("成分判定结果")]
- [Nullable(false)]
- [DataLength(20)]
- [JsonProperty("judgeresultChemDesc")]
- public string JudgeresultChemDesc
- {
- get { return judgeresultChemDesc; }
- set { judgeresultChemDesc = value; }
- }
- /// <summary>
- /// 是否脱单(1:是,0:否)
- /// </summary>
- [Description("是否脱单")]
- [Nullable(false)]
- [DataLength(1)]
- [JsonProperty("orderisunchainDesc")]
- public string OrderisunchainDesc
- {
- get { return orderisunchainDesc; }
- set { orderisunchainDesc = value; }
- }
- /// <summary>
- /// 有效标志(1:有效;0:无效)
- /// </summary>
- [Description("有效标志")]
- [Nullable(false)]
- [DataLength(1)]
- [JsonProperty("validflagDesc")]
- public string ValidflagDesc
- {
- get { return validflagDesc; }
- set { validflagDesc = value; }
- }
- }
- }
|