feat(oa): 工资发放记录增加员工姓名字段并优化查询功能

- 在 GearSalaryRecordsVo 中添加 employeeName 字段,用于显示员工姓名
- 在 GearSalaryRecordsMapper 中新增 selectVoPagePlus 方法,用于分页查询
- 更新 GearSalaryRecordsMapper.xml,添加新的 SQL 查询语句
- 修改 GearSalaryRecordsServiceImpl 中的 queryPageList 方法,使用新的查询方法- 优化查询条件构建逻辑,使用表别名提高查询效率
This commit is contained in:
2025-08-09 13:31:44 +08:00
parent ebfa25bb16
commit e17b0f9d27
4 changed files with 61 additions and 2 deletions

View File

@@ -108,5 +108,9 @@ public class GearSalaryRecordsVo {
@ExcelProperty(value = "发放状态")
private String payStatus;
//联查昵称
@ExcelProperty(value = "员工姓名")
private String employeeName;
}