liyong
5 小时以前 1ca5584d7e3200a9af65a099bd26d3593e2ba702
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
package com.ruoyi.staff.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDate;
 
/**
 * 月度员工流动率和流失率统计VO
 */
@Data
public class MonthlyTurnoverRateVo {
    @Schema(description = "月份")
    private String month;
 
    @Schema(description = "月初员工数")
    private Integer beginMonthStaffCount;
 
    @Schema(description = "月末员工数")
    private Integer endMonthStaffCount;
 
    @Schema(description = "月度入职员工数")
    private Integer newHireCount;
 
    @Schema(description = "月度离职员工数")
    private Integer leaveCount;
 
    @Schema(description = "流失率(%)")
    private Double turnoverRate;
 
    @Schema(description = "流动率(%)")
    private Double flowRate;
 
    @Schema(description = "月份开始日期")
    private LocalDate monthStartDate;
 
    @Schema(description = "月份结束日期")
    private LocalDate monthEndDate;
}