SysDictMapper.xml 515 B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.platform.dao.mapper.upms.SysDictMapper">
  4. <select id="selectType" resultType="java.lang.String">
  5. SELECT distinct(type) as type FROM t_sys_dict;
  6. </select>
  7. <select id="selectTreeByDTO"
  8. resultType="com.platform.dao.entity.upms.SysDict">
  9. SELECT * from t_sys_dict
  10. group by type
  11. </select>
  12. </mapper>