feat(system): 增加假期余额设置中的加班作废天数字段

- 在 HolidayBalanceSettingRespVO 中添加 afterFewDays 字段
- 更新 validityPeriod 字段的描述,增加新的有效期类型 9
This commit is contained in:
aikai 2025-04-01 14:30:50 +08:00
parent ed69f18ef7
commit 95120fe0f3

View File

@ -51,10 +51,14 @@ public class HolidayBalanceSettingRespVO {
@ExcelProperty("是否按实际工作时长发放 0否 1是(例如每年1月1日发放6天假期入职时间是6月1日的员工则按照半年发放3天假期当余额出现小数时按四舍五入取整)")
private Integer actualWorkFlag;
@Schema(description = "有效期类型 1自发放日起1个月 2自发放日起1周年 3按入职日期起12个月 4自然年1月1日-12月31日 5每年固定时间作废 6永久有效 7每月固定时间作废 8每季末作废")
@ExcelProperty("有效期类型 1自发放日起1个月 2自发放日起1周年 3按入职日期起12个月 4自然年1月1日-12月31日 5每年固定时间作废 6永久有效 7每月固定时间作废 8每季末作废")
@Schema(description = "有效期类型 1自发放日起1个月 2自发放日起1周年 3按入职日期起12个月 4自然年1月1日-12月31日 5每年固定时间作废 6永久有效 7每月固定时间作废 8每季末作废 9加班多少天后作废")
@ExcelProperty("有效期类型 1自发放日起1个月 2自发放日起1周年 3按入职日期起12个月 4自然年1月1日-12月31日 5每年固定时间作废 6永久有效 7每月固定时间作废 8每季末作废 9加班多少天后作废")
private Integer validityPeriod;
@Schema(description = "加班多少天后作废", example = "12794")
@ExcelProperty("加班多少天后作废")
private Integer afterFewDays;
@Schema(description = "每年固定时间作废格式 MM-dd 例如 09-10 每年9月10号作废", example = "12794")
@ExcelProperty("每年固定时间作废格式 MM-dd 例如 09-10 每年9月10号作废")
private String fixedEveryYearInvalid;