package com.gk.hotwork.Domain.Vo;
|
|
/**
|
* @author : jingjy
|
* @date : 2021/10/20 16:23
|
*/
|
public class TaskStatistics {
|
private Integer countNum;
|
|
private String type;
|
|
private String constructionunit;
|
|
public Integer getCountNum() {
|
return countNum;
|
}
|
|
public void setCountNum(Integer countNum) {
|
this.countNum = countNum;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public String getConstructionunit() {
|
return constructionunit;
|
}
|
|
public void setConstructionunit(String constructionunit) {
|
this.constructionunit = constructionunit;
|
}
|
}
|