SystemMenuMapper.xml 566 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.template.mapper.SystemMenuMapper">
  4. <resultMap id="SystemMenuVOMap" type="com.template.model.vo.SystemMenuVo">
  5. <result property="id" column="id"/>
  6. <result property="menuName" column="menu_name"/>
  7. </resultMap>
  8. <select id="querySystemMenuAll" resultMap="SystemMenuVOMap">
  9. SELECT sm.id,sm.menu_name FROM system_menu sm where deleted = 0
  10. </select>
  11. </mapper>