feat(wms): 添加部门查询功能增强支持领导昵称显示

- 在WmsDeptMapper中新增selectVoListPlus方法支持自定义查询
- 在WmsDeptMapper.xml中实现部门查询SQL并关联用户表获取领导昵称
- 在WmsDeptServiceImpl中重构查询逻辑使用QueryWrapper替代LambdaQueryWrapper
- 在WmsDeptVo中新增leaderNickName字段用于显示领导昵称信息
This commit is contained in:
2026-03-02 14:53:33 +08:00
parent d383f86001
commit 247802cd92
4 changed files with 41 additions and 10 deletions

View File

@@ -65,4 +65,8 @@ public class WmsDeptVo {
private String remark;
// 领导昵称
private String leaderNickName;
}