HttReportDefaultTotalEntity.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. using System.ComponentModel;
  2. using Newtonsoft.Json;
  3. namespace Core.StlMes.Client.Mcp.Control.Entity
  4. {
  5. /// <summary>
  6. /// 数据库表HTT_REPORT_DEFAULT所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
  7. /// 作者:tgcx-test 时间:2018-07-05
  8. /// </summary>
  9. public class HttReportDefaultTotalEntity
  10. {
  11. /// <summary>
  12. /// 产线代码
  13. /// </summary>
  14. private string plineCode = "";
  15. /// <summary>
  16. /// 报表模板 0-机探 1-手探
  17. /// </summary>
  18. private string reportNo = "";
  19. private string plineName = "";
  20. /// <summary>
  21. /// 产线代码
  22. /// </summary>
  23. [Description("产线")]
  24. [JsonProperty("plineCode")]
  25. public string PlineCode
  26. {
  27. get { return plineCode; }
  28. set { plineCode = value; }
  29. }
  30. /// <summary>
  31. /// 产线代码
  32. /// </summary>
  33. [Description("产线")]
  34. [JsonProperty("plineName")]
  35. public string PlineName
  36. {
  37. get { return plineName; }
  38. set { plineName = value; }
  39. }
  40. /// <summary>
  41. /// 报表模板 0-机探 1-手探
  42. /// </summary>
  43. [Description("报表模板")]
  44. [JsonProperty("reportNo")]
  45. public string ReportNo
  46. {
  47. get { return reportNo; }
  48. set { reportNo = value; }
  49. }
  50. private string machineNo = "";
  51. /// <summary>
  52. /// 标签高
  53. /// </summary>
  54. [Description("机器编号")]
  55. [JsonProperty("MACHINE_NO")]
  56. public string MachineNo
  57. {
  58. get { return machineNo; }
  59. set { machineNo = value; }
  60. }
  61. }
  62. }