| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using Newtonsoft.Json;
- namespace Core.StlMes.Client.Mcp.Control.Entity
- {
- public class HttControlLogDetailEntityPlus: HttControlLogEntity
- {
- /// <summary>
- /// GUID主键
- /// </summary>
- private string controlId = "";
- /// <summary>
- /// 停机分类
- /// </summary>
- private string stopType = "";
- /// <summary>
- /// 停机原因
- /// </summary>
- private string stopReason = "";
- /// <summary>
- /// 停机小类
- /// </summary>
- private string stopSmall = "";
- /// <summary>
- /// 序号
- /// </summary>
- private decimal? controlSeq = null;
- /// <summary>
- /// GUID主键
- /// </summary>
- [Description("GUID主键")]
- [JsonProperty("controlId")]
- public string ControlId
- {
- get { return controlId; }
- set { controlId = value; }
- }
- /// <summary>
- /// 停机分类
- /// </summary>
- [Description("停机分类")]
- [JsonProperty("stopType")]
- public string StopType
- {
- get { return stopType; }
- set { stopType = value; }
- }
- /// <summary>
- /// 停机原因
- /// </summary>
- [Description("停机原因")]
- [JsonProperty("stopReason")]
- public string StopReason
- {
- get { return stopReason; }
- set { stopReason = value; }
- }
- /// <summary>
- /// 停机小类
- /// </summary>
- [Description("停机小类")]
- [JsonProperty("stopSmall")]
- public string StopSmall
- {
- get { return stopSmall; }
- set { stopSmall = value; }
- }
- /// <summary>
- /// 序号
- /// </summary>
- [Description("序号")]
- [JsonProperty("controlSeq")]
- public decimal? ControlSeq
- {
- get { return controlSeq; }
- set { controlSeq = value; }
- }
- /// <summary>
- /// 选择
- /// </summary>
- [Description("选择")]
- [JsonProperty("Chk")]
- public bool Chk { get; set; }
- /// <summary>
- /// 工序点代码
- /// </summary>
- private string stationCode = "";
- /// <summary>
- /// 工序点代码
- /// </summary>
- [Description("工序点 ")]
- [JsonProperty("stationCode")]
- public string StationCode
- {
- get { return stationCode; }
- set { stationCode = value; }
- }
- /// <summary>
- /// 工序点代码
- /// </summary>
- private string memo = "";
- /// <summary>
- /// 工序点代码
- /// </summary>
- [Description("备注 ")]
- [JsonProperty("MEMO")]
- public string Memo
- {
- get { return memo; }
- set { memo = value; }
- }
- }
- }
|