gongchunyi
2026-08-03 f1a6c9ce9f8f758fea587821478f75678f12ed95
src/main/java/com/ruoyi/staff/vo/TotalTurnoverRateVo.java
@@ -1,6 +1,6 @@
package com.ruoyi.staff.vo;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
/**
@@ -8,12 +8,12 @@
 */
@Data
public class TotalTurnoverRateVo {
    @ApiModelProperty("总流动率(%)")
    @Schema(description = "总流动率(%)")
    private Double totalFlowRate;
    @ApiModelProperty("总流失率(%)")
    @Schema(description = "总流失率(%)")
    private Double totalTurnoverRate;
    @ApiModelProperty("当前在职员工数")
    @Schema(description = "当前在职员工数")
    private Integer currentOnJobCount;
}