package com.gk.hotwork.specialWork.model.dto.resp;
|
|
import java.util.List;
|
|
public class WorkDepStatisticRespDTO {
|
private Long depId;
|
private String depName;
|
private Integer totalCount;
|
private List<WorkTypeStatisticRespDTO> typeList;
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public String getDepName() {
|
return depName;
|
}
|
|
public void setDepName(String depName) {
|
this.depName = depName;
|
}
|
|
public Integer getTotalCount() {
|
return totalCount;
|
}
|
|
public void setTotalCount(Integer totalCount) {
|
this.totalCount = totalCount;
|
}
|
|
public List<WorkTypeStatisticRespDTO> getTypeList() {
|
return typeList;
|
}
|
|
public void setTypeList(List<WorkTypeStatisticRespDTO> typeList) {
|
this.typeList = typeList;
|
}
|
}
|