feat(wms/report): 新增WMS报表通用配置管理功能
- 新增WmsReportConfig实体类、Bo、Vo和Mapper,定义报表配置的数据结构 - 新增IWmsReportConfigService接口及WmsReportConfigServiceImpl实现类,提供增删改查和分页查询服务 - 新增WmsReportConfigController控制器,提供配置列表、详情、新增、修改、删除和导出的API接口 - 在WmsReportConfigMapper.xml中映射数据库字段与实体属性
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.klp.mapper.WmsReportConfigMapper">
|
||||
|
||||
<resultMap type="com.klp.domain.WmsReportConfig" id="WmsReportConfigResult">
|
||||
<result property="configId" column="config_id"/>
|
||||
<result property="reportCode" column="report_code"/>
|
||||
<result property="reportName" column="report_name"/>
|
||||
<result property="configJson" column="config_json"/>
|
||||
<result property="remark" column="remark"/>
|
||||
<result property="delFlag" column="del_flag"/>
|
||||
<result property="createBy" column="create_by"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="updateBy" column="update_by"/>
|
||||
<result property="updateTime" column="update_time"/>
|
||||
</resultMap>
|
||||
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user