using System.ComponentModel; using Newtonsoft.Json; namespace Core.StlMes.Client.Mcp.Control.Entity { /// /// 数据库表HTT_REPORT_DEFAULT所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2018-07-05 /// public class HttReportDefaultTotalEntity { /// /// 产线代码 /// private string plineCode = ""; /// /// 报表模板 0-机探 1-手探 /// private string reportNo = ""; private string plineName = ""; /// /// 产线代码 /// [Description("产线")] [JsonProperty("plineCode")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线代码 /// [Description("产线")] [JsonProperty("plineName")] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 报表模板 0-机探 1-手探 /// [Description("报表模板")] [JsonProperty("reportNo")] public string ReportNo { get { return reportNo; } set { reportNo = value; } } private string machineNo = ""; /// /// 标签高 /// [Description("机器编号")] [JsonProperty("MACHINE_NO")] public string MachineNo { get { return machineNo; } set { machineNo = value; } } } }