| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- using Core.StlMes.Client.Judge.Models;
- using Newtonsoft.Json;
- using System.ComponentModel;
- namespace Core.StlMes.Client.Judge.ViewModels
- {
- public class PortVrpBatchSampleResultCtrlEntity : PortVrpBatchSampleResultEntity
- {
- private string plineName = "";
- /// <summary>
- /// 产线
- /// </summary>
- [Description("产线")]
- [JsonProperty("plineName")]
- public new string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- private string proPlanId = "";
- /// <summary>
- /// 生产订单号
- /// </summary>
- [Description("生产订单号")]
- [JsonProperty("proPlanId")]
- public string ProPlanId
- {
- get { return proPlanId; }
- set { proPlanId = 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("phyResultDesc")]
- public string PhyResultDesc
- {
- get { return phyResultDesc; }
- set { phyResultDesc = value; }
- }
- private string outdiameter = "";
- /// <summary>
- /// 外径
- /// </summary>
- [Description("外径")]
- [JsonProperty("outdiameter")]
- public string Outdiameter
- {
- get { return outdiameter; }
- set { outdiameter = value; }
- }
- private string wallthick = "";
- /// <summary>
- /// 壁厚
- /// </summary>
- [Description("壁厚")]
- [JsonProperty("wallthick")]
- public string Wallthick
- {
- get { return wallthick; }
- set { wallthick = value; }
- }
- private string steelName = "";
- /// <summary>
- /// 钢级
- /// </summary>
- [Description("钢级")]
- [JsonProperty("steelName")]
- public string SteelName
- {
- get { return steelName; }
- set { steelName = 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; }
- }
- }
- }
|