| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package com.hcks.cmfds.model.health;
- import java.io.Serializable;
- public class Warningtsforwindturbine implements Serializable{
- private static final long serialVersionUID = 3L;
-
- private Integer id;
- private String modelid;
- private String windpowerstationid;
- private String projectid;
- private String lineid;
- private String windturbineid;
- private String warningType;
- private String year;
- private String month;
- private Integer monthWarningNum;//月报警次数
- private Double monthMTBF;//月平均间隔时间
- private Double monthMTTR;//月平均消缺时间
- private Integer yearwarning;//年报警次数
- private Double yearMTBF;//年平均间隔时间
- private Double yearMTTR;//年平均消缺时间
- private Integer totalwarningnum;//总报警次数
- private Double totalMTBF;//总平均间隔时间
- private Double totalMTTR;//总平均消缺时间
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getModelid() {
- return modelid;
- }
- public void setModelid(String modelid) {
- this.modelid = modelid;
- }
- public String getWindpowerstationid() {
- return windpowerstationid;
- }
- public void setWindpowerstationid(String windpowerstationid) {
- this.windpowerstationid = windpowerstationid;
- }
- public String getProjectid() {
- return projectid;
- }
- public void setProjectid(String projectid) {
- this.projectid = projectid;
- }
- public String getLineid() {
- return lineid;
- }
- public void setLineid(String lineid) {
- this.lineid = lineid;
- }
- public String getWindturbineid() {
- return windturbineid;
- }
- public void setWindturbineid(String windturbineid) {
- this.windturbineid = windturbineid;
- }
- public String getWarningType() {
- return warningType;
- }
- public void setWarningType(String warningType) {
- this.warningType = warningType;
- }
- public String getYear() {
- return year;
- }
- public void setYear(String year) {
- this.year = year;
- }
- public String getMonth() {
- return month;
- }
- public void setMonth(String month) {
- this.month = month;
- }
- public Integer getMonthWarningNum() {
- return monthWarningNum;
- }
- public void setMonthWarningNum(Integer monthWarningNum) {
- this.monthWarningNum = monthWarningNum;
- }
- public Double getMonthMTBF() {
- return monthMTBF;
- }
- public void setMonthMTBF(Double monthMTBF) {
- this.monthMTBF = monthMTBF;
- }
- public Double getMonthMTTR() {
- return monthMTTR;
- }
- public void setMonthMTTR(Double monthMTTR) {
- this.monthMTTR = monthMTTR;
- }
- public Integer getYearwarning() {
- return yearwarning;
- }
- public void setYearwarning(Integer yearwarning) {
- this.yearwarning = yearwarning;
- }
- public Double getYearMTBF() {
- return yearMTBF;
- }
- public void setYearMTBF(Double yearMTBF) {
- this.yearMTBF = yearMTBF;
- }
- public Double getYearMTTR() {
- return yearMTTR;
- }
- public void setYearMTTR(Double yearMTTR) {
- this.yearMTTR = yearMTTR;
- }
- public Integer getTotalwarningnum() {
- return totalwarningnum;
- }
- public void setTotalwarningnum(Integer totalwarningnum) {
- this.totalwarningnum = totalwarningnum;
- }
- public Double getTotalMTBF() {
- return totalMTBF;
- }
- public void setTotalMTBF(Double totalMTBF) {
- this.totalMTBF = totalMTBF;
- }
- public Double getTotalMTTR() {
- return totalMTTR;
- }
- public void setTotalMTTR(Double totalMTTR) {
- this.totalMTTR = totalMTTR;
- }
-
- }
|