heheng
2025-09-18 32f55fac90d67b276254b6d91e8b65e8f6e36b48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.gkhy.system.domain.vo;
 
 
import com.gkhy.common.core.domain.entity.SysDept;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
@ApiModel(value = "部门安全检查统计")
public class DeptVo extends SysDept {
 
    @ApiModelProperty(value = "部门安全检查数量")
    private Integer checkCount;
 
    public Integer getCheckCount() {
        return checkCount;
    }
 
    public void setCheckCount(Integer checkCount) {
        this.checkCount = checkCount;
    }
 
 
}