| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- using Core.StlMes.Client.Judge.Models;
- using Newtonsoft.Json;
- using System.ComponentModel;
- namespace Core.StlMes.Client.Judge.ViewModels
- {
- public class QcmLgJudgeCtrlEntity : QcmLgJudgeEntity
- {
- private string plineName = "";
- /// <summary>
- /// 产线
- /// </summary>
- [Description("产线")]
- [JsonProperty("plineName")]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- private string judgeresultChemDesc = "";
- /// <summary>
- /// 成分判定结果
- /// </summary>
- [Description("成分判定结果")]
- [JsonProperty("judgeresultChemDesc")]
- public string JudgeresultChemDesc
- {
- get { return judgeresultChemDesc; }
- set { judgeresultChemDesc = value; }
- }
- private string judgeresultPhyDesc = "";
- /// <summary>
- /// 理化判定结果
- /// </summary>
- [Description("理化判定结果")]
- [JsonProperty("judgeresultPhyDesc")]
- public string JudgeresultPhyDesc
- {
- get { return judgeresultPhyDesc; }
- set { judgeresultPhyDesc = value; }
- }
- private string judgeresultFaceDesc = "";
- /// <summary>
- /// 表面判定结果
- /// </summary>
- [Description("表面判定结果")]
- [JsonProperty("judgeresultFaceDesc")]
- public string JudgeresultFaceDesc
- {
- get { return judgeresultFaceDesc; }
- set { judgeresultFaceDesc = value; }
- }
- private string judgeresultSpecDesc = "";
- /// <summary>
- /// 公差判定结果
- /// </summary>
- [Description("公差判定结果")]
- [JsonProperty("judgeresultSpecDesc")]
- public string JudgeresultSpecDesc
- {
- get { return judgeresultSpecDesc; }
- set { judgeresultSpecDesc = value; }
- }
- private string judgeresultDesc = "";
- /// <summary>
- /// 综合判定结果
- /// </summary>
- [Description("综合判定结果")]
- [JsonProperty("judgeresultDesc")]
- public string JudgeresultDesc
- {
- get { return judgeresultDesc; }
- set { judgeresultDesc = value; }
- }
- private string validflagDesc = "";
- /// <summary>
- /// 有效标志
- /// </summary>
- [Description("有效标志")]
- [JsonProperty("validflagDesc")]
- public string ValidflagDesc
- {
- get { return validflagDesc; }
- set { validflagDesc = value; }
- }
- }
- }
|