| 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 QcmGpJudgeApplyPCtrlEntity : QcmGpJugdeApplyEntity
- {
- private string chemResultDesc = "";
- /// <summary>
- /// 成分结果
- /// </summary>
- [Description("成分结果")]
- [Nullable(true)]
- [DataLength(20)]
- [JsonProperty("chemResultDesc")]
- public string ChemResultDesc
- {
- get { return chemResultDesc; }
- set { chemResultDesc = value; }
- }
- private string phyResultDesc = "";
- /// <summary>
- /// 理化结果
- /// </summary>
- [Description("理化结果")]
- [Nullable(true)]
- [DataLength(20)]
- [JsonProperty("phyResultDesc")]
- public string PhyResultDesc
- {
- get { return phyResultDesc; }
- set { phyResultDesc = value; }
- }
- }
- }
|