refactor(wms): 重构考勤规则字段命名

- 将迟到一级相关字段从 late1 重命名为 lateOne
- 将迟到二级相关字段从 late2 重命名为 lateTwo
- 将迟到一级扣款字段从 deduct1 重命名为 deductOne
- 将迟到二级扣款字段从 deduct2 重命名为 deductTwo
- 更新所有相关的 getter/setter 方法调用
- 修改映射文件中的字段映射配置
- 更新查询条件中的字段引用
This commit is contained in:
2026-05-12 17:09:37 +08:00
parent 693de2ad5e
commit 139f0ebb3e
6 changed files with 35 additions and 35 deletions

View File

@@ -38,28 +38,28 @@ public class WmsAttendanceRuleVo {
*/
@ExcelProperty(value = "迟到一级阈值", converter = ExcelDictConvert.class)
@ExcelDictFormat(readConverterExp = "分=钟")
private Long late1;
private Long lateOne;
/**
* 迟到二级阈值(分钟)
*/
@ExcelProperty(value = "迟到二级阈值", converter = ExcelDictConvert.class)
@ExcelDictFormat(readConverterExp = "分=钟")
private Long late2;
private Long lateTwo;
/**
* 迟到一级扣款(元/次)
*/
@ExcelProperty(value = "迟到一级扣款", converter = ExcelDictConvert.class)
@ExcelDictFormat(readConverterExp = "元=/次")
private BigDecimal deduct1;
private BigDecimal deductOne;
/**
* 迟到二级扣款(元/次)
*/
@ExcelProperty(value = "迟到二级扣款", converter = ExcelDictConvert.class)
@ExcelDictFormat(readConverterExp = "元=/次")
private BigDecimal deduct2;
private BigDecimal deductTwo;
/**
* 超过多少分钟按旷工半天处理