Commit c591e582 by 墨竹

feat:菜单接口修改

parent 548e8db8
...@@ -97,14 +97,14 @@ ...@@ -97,14 +97,14 @@
select select
<include refid="Base_Column_List"/> <include refid="Base_Column_List"/>
from tab_haoban_menu from tab_haoban_menu
where status_flag = 1 and menu_type = 0 order by menu_sort where status_flag = 1 and menu_code = parent_code order by menu_sort
</select> </select>
<select id="getNotPidMenuList" resultMap="TabHaobanMenuMap"> <select id="getNotPidMenuList" resultMap="TabHaobanMenuMap">
select select
<include refid="Base_Column_List"/> <include refid="Base_Column_List"/>
from tab_haoban_menu from tab_haoban_menu
where status_flag = 1 and menu_type != 0 order by menu_sort where status_flag = 1 and menu_code != parent_code order by menu_sort
</select> </select>
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
b.clerk_type = #{clerkType} b.clerk_type = #{clerkType}
and b.wx_enterprise_id = #{wxEnterpriseId} and b.wx_enterprise_id = #{wxEnterpriseId}
and c.status_flag = 1 and c.status_flag = 1
and c.menu_type = 0 and c.menu_code = parent_code
<if test="systemFlag != null"> <if test="systemFlag != null">
and b.system_flag = #{systemFlag} and b.system_flag = #{systemFlag}
</if> </if>
...@@ -135,7 +135,7 @@ ...@@ -135,7 +135,7 @@
b.clerk_type = #{clerkType} b.clerk_type = #{clerkType}
and b.wx_enterprise_id = #{wxEnterpriseId} and b.wx_enterprise_id = #{wxEnterpriseId}
and c.status_flag = 1 and c.status_flag = 1
and c.menu_type != 0 and c.menu_code != parent_code
<if test="systemFlag != null"> <if test="systemFlag != null">
and b.system_flag = #{systemFlag} and b.system_flag = #{systemFlag}
</if> </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment