goupan
2024-04-03 5506e9a45e717ffcb67ec313b5a4e8206d9b3a39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package cn.stylefeng.roses.kernel.system.api.pojo.home;
 
import lombok.Data;
 
/**
 * 首页系统企业或公司信息封装
 *
 * @author xixiaowei
 * @date 2022/1/25 15:06
 */
@Data
public class HomeCompanyInfo {
 
    /**
     * 所有组织机构数
     */
    private Integer organizationNum;
 
    /**
     * 所有企业人员总数
     */
    private Integer enterprisePersonNum;
 
    /**
     * 所有职位总数
     */
    private Integer positionNum;
 
    /**
     * 当前登录用户,所在公司的部门数量
     */
    private Integer currentDeptNum;
 
    /**
     * 当前登录用户,所在公司的总人数
     */
    private Integer currentCompanyPersonNum;
}