Codex Assistant
2 天以前 915d80766dd8e0157e9b9510b3634ed758eb5c5a
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
39
40
41
42
43
package com.rongyichuang.employee.dto.response;
 
/**
 * 员工审核统计数据
 */
public class EmployeeReviewStatsResponse {
    private int pendingCount;
    private int approvedCount;
    private int rejectedCount;
 
    public EmployeeReviewStatsResponse() {
    }
 
    public EmployeeReviewStatsResponse(int pendingCount, int approvedCount, int rejectedCount) {
        this.pendingCount = pendingCount;
        this.approvedCount = approvedCount;
        this.rejectedCount = rejectedCount;
    }
 
    public int getPendingCount() {
        return pendingCount;
    }
 
    public void setPendingCount(int pendingCount) {
        this.pendingCount = pendingCount;
    }
 
    public int getApprovedCount() {
        return approvedCount;
    }
 
    public void setApprovedCount(int approvedCount) {
        this.approvedCount = approvedCount;
    }
 
    public int getRejectedCount() {
        return rejectedCount;
    }
 
    public void setRejectedCount(int rejectedCount) {
        this.rejectedCount = rejectedCount;
    }
}