报告模板配置

This commit is contained in:
hanyong
2022-10-28 16:01:06 +08:00
parent 41ad17fb02
commit 4fe7be8960
17 changed files with 525 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
package com.njcn.system.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.njcn.system.pojo.po.Dic;
import com.njcn.system.pojo.vo.DicVO;
import java.util.List;
public interface DicMapper extends BaseMapper<Dic> {
List<DicVO> getAllDic();
}

View File

@@ -0,0 +1,8 @@
<?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.njcn.system.mapper.DicMapper">
<select id="getAllDic" resultType="DicVO">
SELECT * from sys_dic_tree WHERE status = 0
</select>
</mapper>