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;
|
}
|
}
|