StatisticalAnalysisTopVo.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package com.hcks.cmfds.vo;
  2. import java.util.Date;
  3. public class StatisticalAnalysisTopVo {
  4. private Integer num;
  5. private String windfarm;
  6. private String code;
  7. private String windturbine;
  8. private Date beginDate;
  9. private Date endDate;
  10. private Double power;
  11. private Double speed;
  12. private Double generatingCapacity;
  13. private String model;
  14. private Integer frequency;
  15. private String modelId;
  16. public String getCode() {
  17. return code;
  18. }
  19. public void setCode(String code) {
  20. this.code = code;
  21. }
  22. public String getModelId() {
  23. return modelId;
  24. }
  25. public void setModelId(String modelId) {
  26. this.modelId = modelId;
  27. }
  28. public Integer getFrequency() {
  29. return frequency;
  30. }
  31. public void setFrequency(Integer frequency) {
  32. this.frequency = frequency;
  33. }
  34. public String getModel() {
  35. return model;
  36. }
  37. public void setModel(String model) {
  38. this.model = model;
  39. }
  40. public Integer getNum() {
  41. return num;
  42. }
  43. public void setNum(Integer num) {
  44. this.num = num;
  45. }
  46. public String getWindfarm() {
  47. return windfarm;
  48. }
  49. public void setWindfarm(String windfarm) {
  50. this.windfarm = windfarm;
  51. }
  52. public String getWindturbine() {
  53. return windturbine;
  54. }
  55. public void setWindturbine(String windturbine) {
  56. this.windturbine = windturbine;
  57. }
  58. public Date getBeginDate() {
  59. return beginDate;
  60. }
  61. public void setBeginDate(Date beginDate) {
  62. this.beginDate = beginDate;
  63. }
  64. public Date getEndDate() {
  65. return endDate;
  66. }
  67. public void setEndDate(Date endDate) {
  68. this.endDate = endDate;
  69. }
  70. public Double getPower() {
  71. return power;
  72. }
  73. public void setPower(Double power) {
  74. this.power = power;
  75. }
  76. public Double getSpeed() {
  77. return speed;
  78. }
  79. public void setSpeed(Double speed) {
  80. this.speed = speed;
  81. }
  82. public Double getGeneratingCapacity() {
  83. return generatingCapacity;
  84. }
  85. public void setGeneratingCapacity(Double generatingCapacity) {
  86. this.generatingCapacity = generatingCapacity;
  87. }
  88. }