TbImgListMapper.xml 476 B

123456789101112131415
  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.demo.wjj.mapper.TbImgListMapper">
  4. <select id="findAll" resultType="com.demo.wjj.bo.ImgListBo">
  5. SELECT
  6. id,
  7. list_code as ListCode,
  8. list_name as ListName,
  9. list_order as listOrder,
  10. can_enable as canEnable
  11. FROM tb_img_list
  12. </select>
  13. </mapper>