feat(wms/report): 新增WMS报表通用配置管理功能

- 新增WmsReportConfig实体类、Bo、Vo和Mapper,定义报表配置的数据结构
- 新增IWmsReportConfigService接口及WmsReportConfigServiceImpl实现类,提供增删改查和分页查询服务
- 新增WmsReportConfigController控制器,提供配置列表、详情、新增、修改、删除和导出的API接口
- 在WmsReportConfigMapper.xml中映射数据库字段与实体属性
This commit is contained in:
2026-05-25 13:03:43 +08:00
parent 0179cf986b
commit cb18132ec6
8 changed files with 446 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package com.klp.mapper;
import com.klp.domain.WmsReportConfig;
import com.klp.domain.vo.WmsReportConfigVo;
import com.klp.common.core.mapper.BaseMapperPlus;
/**
* WMS报通用配置Mapper接口
*
* @author klp
* @date 2026-05-25
*/
public interface WmsReportConfigMapper extends BaseMapperPlus<WmsReportConfigMapper, WmsReportConfig, WmsReportConfigVo> {
}