feat(wms): 添加库存流水模块

- 新增库存流水相关实体类、Mapper、Service、Controller- 实现库存流水的增删查改功能
- 添加库存流水的导出功能
- 优化库存流水的查询接口,支持分页和条件筛选
This commit is contained in:
JR
2025-08-11 11:51:59 +08:00
parent bc61d388ef
commit 528019be52
8 changed files with 524 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.klp.mapper;
import com.klp.domain.WmsStockLog;
import com.klp.domain.vo.WmsStockLogVo;
import com.klp.common.core.mapper.BaseMapperPlus;
/**
* 库存流水Mapper接口
*
* @author JR
* @date 2025-08-11
*/
public interface WmsStockLogMapper extends BaseMapperPlus<WmsStockLogMapper, WmsStockLog, WmsStockLogVo> {
}