Files
klp-oa/klp-wms/src/main/java/com/klp/mapper/WmsBatchMapper.java
JR c4ee58f75d feat(wms): 添加批次、工艺、工艺任务相关功能
- 新增 IWmsBatchService、IWmsProcesseService、IWmsProcessTaskService 接口
- 实现 WmsBatchServiceImpl、WmsProcesseServiceImpl 服务类- 添加 WmsBatch、WmsProcesse、WmsProcessTask 实体类
- 创建对应的 BO、VO 类
- 编写 WmsBatchMapper、WmsProcesseMapper 映射接口- 生成 WmsBatchMapper.xml、WmsProcesseMapper.xml 映射文件
- 开发 WmsBatchController、WmsProcesseController 控制器
2025-08-14 13:52:08 +08:00

16 lines
344 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.WmsBatch;
import com.klp.domain.vo.WmsBatchVo;
import com.klp.common.core.mapper.BaseMapperPlus;
/**
* 批次合并相同工艺的任务Mapper接口
*
* @author klp
* @date 2025-08-14
*/
public interface WmsBatchMapper extends BaseMapperPlus<WmsBatchMapper, WmsBatch, WmsBatchVo> {
}