| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using Core.StlMes.Client.Judge.Models;
- using Newtonsoft.Json;
- using System.ComponentModel;
- namespace Core.StlMes.Client.Judge.ViewModels
- {
- public class MatZcMCtrlEntity : MatZcMEntity
- {
- private string lotNo = "";
- public string LotNo1
- {
- get { return lotNo; }
- set { lotNo = value; }
- }
- private string chemJudgeState = "";
- /// <summary>
- /// 判定状态
- /// </summary>
- [Description("判定状态")]
- [JsonProperty("chemJudgeState")]
- public string ChemJudgeState
- {
- get { return chemJudgeState; }
- set { chemJudgeState = value; }
- }
- private string phyJudgeState = "";
- /// <summary>
- /// 判定状态
- /// </summary>
- [Description("判定状态")]
- [JsonProperty("phyJudgeState")]
- public string PhyJudgeState
- {
- get { return phyJudgeState; }
- set { phyJudgeState = value; }
- }
- private string chemResultDesc = "";
- /// <summary>
- /// 成分判定结果
- /// </summary>
- [Description("成分判定结果")]
- [JsonProperty("chemResultDesc")]
- public string ChemResultDesc
- {
- get { return chemResultDesc; }
- set { chemResultDesc = value; }
- }
- private string phyResultDesc = "";
- /// <summary>
- /// 理化判定结果
- /// </summary>
- [Description("理化判定结果")]
- [JsonProperty("chemResultDesc")]
- public string PhyResultDesc
- {
- get { return phyResultDesc; }
- set { phyResultDesc = value; }
- }
- }
- }
|