feat(wms/report): 新增WMS报表通用配置管理功能
- 新增WmsReportConfig实体类、Bo、Vo和Mapper,定义报表配置的数据结构 - 新增IWmsReportConfigService接口及WmsReportConfigServiceImpl实现类,提供增删改查和分页查询服务 - 新增WmsReportConfigController控制器,提供配置列表、详情、新增、修改、删除和导出的API接口 - 在WmsReportConfigMapper.xml中映射数据库字段与实体属性
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
package com.klp.service;
|
||||
|
||||
import com.klp.domain.WmsReportConfig;
|
||||
import com.klp.domain.vo.WmsReportConfigVo;
|
||||
import com.klp.domain.bo.WmsReportConfigBo;
|
||||
import com.klp.common.core.page.TableDataInfo;
|
||||
import com.klp.common.core.domain.PageQuery;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* WMS报通用配置Service接口
|
||||
*
|
||||
* @author klp
|
||||
* @date 2026-05-25
|
||||
*/
|
||||
public interface IWmsReportConfigService {
|
||||
|
||||
/**
|
||||
* 查询WMS报通用配置
|
||||
*/
|
||||
WmsReportConfigVo queryById(Long configId);
|
||||
|
||||
/**
|
||||
* 查询WMS报通用配置列表
|
||||
*/
|
||||
TableDataInfo<WmsReportConfigVo> queryPageList(WmsReportConfigBo bo, PageQuery pageQuery);
|
||||
|
||||
/**
|
||||
* 查询WMS报通用配置列表
|
||||
*/
|
||||
List<WmsReportConfigVo> queryList(WmsReportConfigBo bo);
|
||||
|
||||
/**
|
||||
* 新增WMS报通用配置
|
||||
*/
|
||||
Boolean insertByBo(WmsReportConfigBo bo);
|
||||
|
||||
/**
|
||||
* 修改WMS报通用配置
|
||||
*/
|
||||
Boolean updateByBo(WmsReportConfigBo bo);
|
||||
|
||||
/**
|
||||
* 校验并批量删除WMS报通用配置信息
|
||||
*/
|
||||
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
|
||||
}
|
||||
Reference in New Issue
Block a user