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
package cn.flightfeather.thirdappmodule.bean.vo;
 
import java.io.Serializable;
import java.util.ArrayList;
 
public class ProblemCategoryVo implements Serializable {
    private static final long serialVersionUID = -560021350961458958L;
    private String problemTypeId;//问题类型
    private String problemTypeName;//问题名称
    private int totalCount;//问题总数
    private int isRectifiedCount;//已整改个数
    private ArrayList<ProblemlistVo> problemlistVos = new ArrayList<>();//具体问题列表
 
//        public ProblemCategory(String problemTypeId, String problemTypeName) {
//            this.problemTypeId = problemTypeId;
//            this.problemTypeName = problemTypeName;
//        }
 
 
    public String getProblemTypeId() {
        return problemTypeId;
    }
 
    public void setProblemTypeId(String problemTypeId) {
        this.problemTypeId = problemTypeId;
    }
 
    public String getProblemTypeName() {
        return problemTypeName;
    }
 
    public void setProblemTypeName(String problemTypeName) {
        this.problemTypeName = problemTypeName;
    }
 
    public int getTotalCount() {
        return totalCount;
    }
 
    public void setTotalCount(int totalCount) {
        this.totalCount = totalCount;
    }
 
    public int getIsRectifiedCount() {
        return isRectifiedCount;
    }
 
    public void setIsRectifiedCount(int isRectifiedCount) {
        this.isRectifiedCount = isRectifiedCount;
    }
 
    public ArrayList<ProblemlistVo> getProblemlistVos() {
        return problemlistVos;
    }
 
    public void setProblemlistVos(ArrayList<ProblemlistVo> problemlistVos) {
        this.problemlistVos = problemlistVos;
    }
}