package com.gkhy.safePlatform.specialWork.model.dto.resp; import java.util.List; public class WorkDepStatisticRespDTO { private Long depId; private String depName; private Integer totalCount; private List 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 getTypeList() { return typeList; } public void setTypeList(List typeList) { this.typeList = typeList; } }