feat(wms): 添加岗位和岗位职责管理功能
- 创建岗位实体类 WmsPost 和岗位职责实体类 WmsPostDuty - 实现岗位和岗位职责的业务对象 BO 和视图对象 VO - 开发岗位和岗位职责的服务接口及实现类 - 添加岗位和岗位职责的控制器提供 REST API 接口 - 配置 MyBatis Plus 的 Mapper 接口和 XML 映射文件 - 实现岗位和岗位职责的增删改查、分页查询和导出功能 - 添加数据验证、日志记录和防止重复提交功能
This commit is contained in:
15
klp-wms/src/main/java/com/klp/mapper/WmsPostDutyMapper.java
Normal file
15
klp-wms/src/main/java/com/klp/mapper/WmsPostDutyMapper.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package com.klp.mapper;
|
||||
|
||||
import com.klp.domain.WmsPostDuty;
|
||||
import com.klp.domain.vo.WmsPostDutyVo;
|
||||
import com.klp.common.core.mapper.BaseMapperPlus;
|
||||
|
||||
/**
|
||||
* 岗位职责Mapper接口
|
||||
*
|
||||
* @author klp
|
||||
* @date 2026-06-15
|
||||
*/
|
||||
public interface WmsPostDutyMapper extends BaseMapperPlus<WmsPostDutyMapper, WmsPostDuty, WmsPostDutyVo> {
|
||||
|
||||
}
|
||||
15
klp-wms/src/main/java/com/klp/mapper/WmsPostMapper.java
Normal file
15
klp-wms/src/main/java/com/klp/mapper/WmsPostMapper.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package com.klp.mapper;
|
||||
|
||||
import com.klp.domain.WmsPost;
|
||||
import com.klp.domain.vo.WmsPostVo;
|
||||
import com.klp.common.core.mapper.BaseMapperPlus;
|
||||
|
||||
/**
|
||||
* 岗位Mapper接口
|
||||
*
|
||||
* @author klp
|
||||
* @date 2026-06-15
|
||||
*/
|
||||
public interface WmsPostMapper extends BaseMapperPlus<WmsPostMapper, WmsPost, WmsPostVo> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user