Files
klp-oa/klp-wms/src/main/java/com/klp/mapper/WmsDeptMapper.java
Joshi 05447c21ef feat(approval): 完善审批流程并新增部门管理功能
- 修改审批任务服务接口返回类型为Map以支持复杂数据结构
- 新增WMS部门管理模块,包括实体、业务对象、控制器和实现类
- 添加部门树形结构支持和部门负责人管理功能
- 更新审批流程逻辑,集成部门领导审批机制
- 重构审批任务查询方法以关联审批详情和申请人信息
- 添加部门ID字段到请假和外出申请相关实体中
- 优化多级审批流程,支持基于部门层级的审批链路
- 移除废弃的导入语句并整理代码结构
2026-03-02 14:41:43 +08:00

16 lines
332 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.klp.mapper;
import com.klp.domain.WmsDept;
import com.klp.domain.vo.WmsDeptVo;
import com.klp.common.core.mapper.BaseMapperPlus;
/**
* WMS系统部门树形结构Mapper接口
*
* @author klp
* @date 2026-03-02
*/
public interface WmsDeptMapper extends BaseMapperPlus<WmsDeptMapper, WmsDept, WmsDeptVo> {
}