| 123456789101112131415161718192021222324252627 |
- <?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="platform.modules.government.dao.NavigationDao">
- <select id="getName" resultType="string">
- select name from z_navigation where id=#{id}
- </select>
- <select id="findListLimit" resultType="platform.modules.government.entity.Navigation">
- select * from z_navigation where del_flag=0 and is_start=1 order by sort asc,create_time desc
- limit 8
- </select>
- <select id="findByName" resultType="platform.modules.government.entity.Navigation">
- SELECT * FROM z_navigation u WHERE u.name = #{name}
- and u.del_flag=0 limit 0,1
- </select>
- <select id="countNavigationByStart" resultType="int">
- SELECT count(id) FROM z_navigation u WHERE u.is_start = true
- and u.del_flag=0
- <if test="id!=null and id!=''">
- and id!=#{id}
- </if>
- </select>
- </mapper>
|