| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- 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 QcmZgPhyJudgeCtrlEntity : QcmZgPhyjudgeEntity
- {
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- private string validflagDesc = "";
- /// <summary>
- /// 有效标志(1:有效,0:无效)
- /// </summary>
- [Description("有效标志")]
- [Nullable(false)]
- [DataLength(1)]
- [JsonProperty("validflagDesc")]
- public string ValidflagDesc
- {
- get { return validflagDesc; }
- set { validflagDesc = value; }
- }
- private string judgeresultPhyDesc = "";
- /// <summary>
- /// 理化判定结果
- /// </summary>
- [Description("理化判定结果")]
- [Nullable(false)]
- [DataLength(1)]
- [JsonProperty("judgeresultPhyDesc")]
- public string JudgeresultPhyDesc
- {
- get { return judgeresultPhyDesc; }
- set { judgeresultPhyDesc = value; }
- }
- private string plineName = "";
- /// <summary>
- /// 产线
- /// </summary>
- [Description("产线")]
- [Nullable(false)]
- [DataLength(1)]
- [JsonProperty("plineName")]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- private string judgegradedesc = "";
- /// <summary>
- /// 判定钢种
- /// </summary>
- [Description("判定钢种")]
- [Nullable(false)]
- [DataLength(1)]
- [JsonProperty("judgegradedesc")]
- public string Judgegradedesc
- {
- get { return judgegradedesc; }
- set { judgegradedesc = value; }
- }
- private string judgesteelname = "";
- /// <summary>
- /// 判定钢级(牌号)
- /// </summary>
- [Description("判定钢级(牌号)")]
- [Nullable(false)]
- [DataLength(1)]
- [JsonProperty("judgesteelname")]
- public string Judgesteelname
- {
- get { return judgesteelname; }
- set { judgesteelname = value; }
- }
- }
- }
|