Warningtsforwindturbine.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package com.hcks.cmfds.model.health;
  2. import java.io.Serializable;
  3. public class Warningtsforwindturbine implements Serializable{
  4. private static final long serialVersionUID = 3L;
  5. private Integer id;
  6. private String modelid;
  7. private String windpowerstationid;
  8. private String projectid;
  9. private String lineid;
  10. private String windturbineid;
  11. private String warningType;
  12. private String year;
  13. private String month;
  14. private Integer monthWarningNum;//月报警次数
  15. private Double monthMTBF;//月平均间隔时间
  16. private Double monthMTTR;//月平均消缺时间
  17. private Integer yearwarning;//年报警次数
  18. private Double yearMTBF;//年平均间隔时间
  19. private Double yearMTTR;//年平均消缺时间
  20. private Integer totalwarningnum;//总报警次数
  21. private Double totalMTBF;//总平均间隔时间
  22. private Double totalMTTR;//总平均消缺时间
  23. public Integer getId() {
  24. return id;
  25. }
  26. public void setId(Integer id) {
  27. this.id = id;
  28. }
  29. public String getModelid() {
  30. return modelid;
  31. }
  32. public void setModelid(String modelid) {
  33. this.modelid = modelid;
  34. }
  35. public String getWindpowerstationid() {
  36. return windpowerstationid;
  37. }
  38. public void setWindpowerstationid(String windpowerstationid) {
  39. this.windpowerstationid = windpowerstationid;
  40. }
  41. public String getProjectid() {
  42. return projectid;
  43. }
  44. public void setProjectid(String projectid) {
  45. this.projectid = projectid;
  46. }
  47. public String getLineid() {
  48. return lineid;
  49. }
  50. public void setLineid(String lineid) {
  51. this.lineid = lineid;
  52. }
  53. public String getWindturbineid() {
  54. return windturbineid;
  55. }
  56. public void setWindturbineid(String windturbineid) {
  57. this.windturbineid = windturbineid;
  58. }
  59. public String getWarningType() {
  60. return warningType;
  61. }
  62. public void setWarningType(String warningType) {
  63. this.warningType = warningType;
  64. }
  65. public String getYear() {
  66. return year;
  67. }
  68. public void setYear(String year) {
  69. this.year = year;
  70. }
  71. public String getMonth() {
  72. return month;
  73. }
  74. public void setMonth(String month) {
  75. this.month = month;
  76. }
  77. public Integer getMonthWarningNum() {
  78. return monthWarningNum;
  79. }
  80. public void setMonthWarningNum(Integer monthWarningNum) {
  81. this.monthWarningNum = monthWarningNum;
  82. }
  83. public Double getMonthMTBF() {
  84. return monthMTBF;
  85. }
  86. public void setMonthMTBF(Double monthMTBF) {
  87. this.monthMTBF = monthMTBF;
  88. }
  89. public Double getMonthMTTR() {
  90. return monthMTTR;
  91. }
  92. public void setMonthMTTR(Double monthMTTR) {
  93. this.monthMTTR = monthMTTR;
  94. }
  95. public Integer getYearwarning() {
  96. return yearwarning;
  97. }
  98. public void setYearwarning(Integer yearwarning) {
  99. this.yearwarning = yearwarning;
  100. }
  101. public Double getYearMTBF() {
  102. return yearMTBF;
  103. }
  104. public void setYearMTBF(Double yearMTBF) {
  105. this.yearMTBF = yearMTBF;
  106. }
  107. public Double getYearMTTR() {
  108. return yearMTTR;
  109. }
  110. public void setYearMTTR(Double yearMTTR) {
  111. this.yearMTTR = yearMTTR;
  112. }
  113. public Integer getTotalwarningnum() {
  114. return totalwarningnum;
  115. }
  116. public void setTotalwarningnum(Integer totalwarningnum) {
  117. this.totalwarningnum = totalwarningnum;
  118. }
  119. public Double getTotalMTBF() {
  120. return totalMTBF;
  121. }
  122. public void setTotalMTBF(Double totalMTBF) {
  123. this.totalMTBF = totalMTBF;
  124. }
  125. public Double getTotalMTTR() {
  126. return totalMTTR;
  127. }
  128. public void setTotalMTTR(Double totalMTTR) {
  129. this.totalMTTR = totalMTTR;
  130. }
  131. }