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 { /// /// GUID主键 /// private string controlId = ""; /// /// 停机分类 /// private string stopType = ""; /// /// 停机原因 /// private string stopReason = ""; /// /// 停机小类 /// private string stopSmall = ""; /// /// 序号 /// private decimal? controlSeq = null; /// /// GUID主键 /// [Description("GUID主键")] [JsonProperty("controlId")] public string ControlId { get { return controlId; } set { controlId = value; } } /// /// 停机分类 /// [Description("停机分类")] [JsonProperty("stopType")] public string StopType { get { return stopType; } set { stopType = value; } } /// /// 停机原因 /// [Description("停机原因")] [JsonProperty("stopReason")] public string StopReason { get { return stopReason; } set { stopReason = value; } } /// /// 停机小类 /// [Description("停机小类")] [JsonProperty("stopSmall")] public string StopSmall { get { return stopSmall; } set { stopSmall = value; } } /// /// 序号 /// [Description("序号")] [JsonProperty("controlSeq")] public decimal? ControlSeq { get { return controlSeq; } set { controlSeq = value; } } /// /// 选择 /// [Description("选择")] [JsonProperty("Chk")] public bool Chk { get; set; } /// /// 工序点代码 /// private string stationCode = ""; /// /// 工序点代码 /// [Description("工序点 ")] [JsonProperty("stationCode")] public string StationCode { get { return stationCode; } set { stationCode = value; } } /// /// 工序点代码 /// private string memo = ""; /// /// 工序点代码 /// [Description("备注 ")] [JsonProperty("MEMO")] public string Memo { get { return memo; } set { memo = value; } } } }