ProBasicEquipmentPoint.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package com.gyee.power.fitting.model;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.baomidou.mybatisplus.extension.activerecord.Model;
  4. import java.io.Serializable;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. /**
  8. * <p>
  9. * 设备测点
  10. * </p>
  11. *
  12. * @author chenmh
  13. * @since 2023-09-22
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = false)
  17. @TableName("pro_basic_equipment_point")
  18. public class ProBasicEquipmentPoint extends Model<ProBasicEquipmentPoint> {
  19. private static final long serialVersionUID=1L;
  20. /**
  21. * 编号
  22. */
  23. private String id;
  24. /**
  25. * 编码
  26. */
  27. private String nemCode;
  28. /**
  29. * 名称
  30. */
  31. private String name;
  32. /**
  33. * 实时库名称
  34. */
  35. private String aname;
  36. /**
  37. * 型号
  38. */
  39. private String model;
  40. /**
  41. * 单位
  42. */
  43. private String valueUnit;
  44. /**
  45. * 英文名称
  46. */
  47. private String englishName;
  48. /**
  49. * 类型编号
  50. */
  51. private String typeId;
  52. /**
  53. * 所属型号
  54. */
  55. private String modelId;
  56. /**
  57. * 最大值
  58. */
  59. private String maxval;
  60. /**
  61. * 最小值
  62. */
  63. private String minval;
  64. /**
  65. * 合理最大值
  66. */
  67. private String reasonableMaxval;
  68. /**
  69. * 合理最小值
  70. */
  71. private String reasonableMinval;
  72. /**
  73. * 风机编号
  74. */
  75. private String windturbineId;
  76. /**
  77. * 统一编码
  78. */
  79. private String uniformCode;
  80. /**
  81. * 短ID
  82. */
  83. private String shortId;
  84. /**
  85. * 长ID
  86. */
  87. private String longId;
  88. /**
  89. * 场站编号
  90. */
  91. private String windpowerstationId;
  92. /**
  93. * 实时配置编号
  94. */
  95. private String realtimeId;
  96. /**
  97. * 部件编号
  98. */
  99. private String logicalUnitId;
  100. /**
  101. * 集团测点编号
  102. */
  103. private String groupPointId;
  104. /**
  105. * 具体名称
  106. */
  107. private String specificName;
  108. /**
  109. * 系数
  110. */
  111. private String coefficient;
  112. @Override
  113. protected Serializable pkVal() {
  114. return this.id;
  115. }
  116. }