feat(wms): 添加报表结果存储功能支持JSON和横向对比
- 创建WmsReportResultStorage实体类用于存储报表结果数据 - 实现IWmsReportResultStorageService服务接口及其实现类 - 添加WmsReportResultStorageController控制器提供CRUD操作 - 创建WmsReportResultStorageMapper数据访问层 - 配置WmsReportResultStorageMapper.xml映射文件 - 定义WmsReportResultStorageBo业务对象和WmsReportResultStorageVo视图对象 - 实现报表数据按日期、类型、产线进行查询和去重逻辑 - 添加Excel导出功能支持报表数据导出
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.klp.mapper;
|
||||
|
||||
import com.klp.domain.WmsReportResultStorage;
|
||||
import com.klp.domain.vo.WmsReportResultStorageVo;
|
||||
import com.klp.common.core.mapper.BaseMapperPlus;
|
||||
|
||||
/**
|
||||
* 报结果存储(JSON+横向对比专用)Mapper接口
|
||||
*
|
||||
* @author klp
|
||||
* @date 2026-03-25
|
||||
*/
|
||||
public interface WmsReportResultStorageMapper extends BaseMapperPlus<WmsReportResultStorageMapper, WmsReportResultStorage, WmsReportResultStorageVo> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user