| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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 PlnSteelforfurnaceCtrlEntity : PlnSteelforfurnaceEntity
- {
- private string judgeState = "";
- /// <summary>
- /// 判定结果
- /// </summary>
- [Description("判定状态")]
- [Nullable(true)]
- [DataLength(20)]
- [JsonProperty("judgeState")]
- public string JudgeState
- {
- get { return judgeState; }
- set { judgeState = value; }
- }
- private string judgeResult = "";
- /// <summary>
- /// 判定结果
- /// </summary>
- [Description("判定结果")]
- [Nullable(true)]
- [DataLength(20)]
- [JsonProperty("judgeResult")]
- public string JudgeResult
- {
- get { return judgeResult; }
- set { judgeResult = value; }
- }
- }
- }
|