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