package com.gkhy.safePlatform.doublePrevention.entity.dto;
|
|
public class DataCountI2RespDO {
|
|
private Integer year;
|
|
private Integer month;
|
|
private Integer B1;
|
|
private Integer B2;
|
|
private Integer B1Rectify;
|
|
private Integer B2Rectify;
|
|
|
public Integer getB2Rectify() {
|
return B2Rectify;
|
}
|
|
public void setB2Rectify(Integer b2Rectify) {
|
B2Rectify = b2Rectify;
|
}
|
|
public Integer getB1Rectify() {
|
return B1Rectify;
|
}
|
|
public void setB1Rectify(Integer b1Rectify) {
|
B1Rectify = b1Rectify;
|
}
|
|
public Integer getB1() {
|
return B1;
|
}
|
|
public void setB1(Integer b1) {
|
B1 = b1;
|
}
|
|
public Integer getB2() {
|
return B2;
|
}
|
|
public void setB2(Integer b2) {
|
B2 = b2;
|
}
|
|
public Integer getYear() {
|
return year;
|
}
|
|
public void setYear(Integer year) {
|
this.year = year;
|
}
|
|
public Integer getMonth() {
|
return month;
|
}
|
|
public void setMonth(Integer month) {
|
this.month = month;
|
}
|
}
|