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;
|
}
|
}
|