ProEconEquipmentmodel.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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_econ_equipmentmodel")
  18. public class ProEconEquipmentmodel extends Model<ProEconEquipmentmodel> {
  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 description;
  40. /**
  41. * 容量
  42. */
  43. private double powerProduction;
  44. /**
  45. * 厂商编号
  46. */
  47. private String windturbineManufacturerId;
  48. /**
  49. * 图片
  50. */
  51. private String photo;
  52. /**
  53. * 传输总发电量单位
  54. */
  55. private String unit;
  56. /**
  57. * 切入风速
  58. */
  59. private String cutinwindSpeed;
  60. /**
  61. * 额定风速
  62. */
  63. private String ratedwindSpeed;
  64. /**
  65. * 切出风速
  66. */
  67. private String cutoutwindSpeed;
  68. /**
  69. * 叶片切入面积
  70. */
  71. private double sweptArea;
  72. /**
  73. * 设备类别
  74. */
  75. private String equipmentCategory;
  76. /**
  77. * 备用1
  78. */
  79. private String spare1;
  80. /**
  81. * 备用1
  82. */
  83. private String spare2;
  84. /**
  85. * 备用3
  86. */
  87. private String spare3;
  88. /**
  89. * 备用4
  90. */
  91. private String spare4;
  92. @Override
  93. protected Serializable pkVal() {
  94. return this.id;
  95. }
  96. }