Pu Zhibing
5 小时以前 981aacc8d5de2638a0f5b3eb2585e64cfaf2807d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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.ruoyi.system.mapper.config.BottomNavMapper">
 
 
    <select id="getAppBottomNav" resultType="com.ruoyi.system.domain.vo.AppBottomNavVO">
        select
            id,name
        from
            `t_bottom_nav`
        where
            status = 1
    </select>
</mapper>