郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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;
    }
}