| | |
| | | <?xml version="1.0" encoding="UTF-8" ?> |
| | | <!DOCTYPE mapper |
| | | PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
| | | "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="menuServiceDaoImpl"> |
| | | |
| | | |
| | | <!-- 保存路由信息至 instance表中 add by wuxw 2018-07-03 --> |
| | | <insert id="saveMenuGroupInfo" parameterType="Map"> |
| | | insert into m_menu_group( |
| | | g_id,name,icon,label,seq,description,group_type,store_type |
| | | ) values ( |
| | | #{gId},#{name},#{icon},#{label},#{seq},#{description},#{groupType},#{storeType} |
| | | ) |
| | | |
| | | insert into m_menu_group(g_id, name, icon, label, seq, description, group_type, store_type) |
| | | values (#{gId}, #{name}, #{icon}, #{label}, #{seq}, #{description}, #{groupType}, #{storeType}) |
| | | </insert> |
| | | |
| | | |
| | | <!-- 查询路由信息 add by wuxw 2018-07-03 --> |
| | | <select id="getMenuGroupInfo" parameterType="Map" resultType="Map"> |
| | |
| | | <if test="seq !=null"> |
| | | and t.seq= #{seq} |
| | | </if> |
| | | |
| | | <if test="description !=null and description != ''"> |
| | | and t.description= #{description} |
| | | </if> |
| | |
| | | <if test="page != -1 and page != null "> |
| | | limit #{page}, #{row} |
| | | </if> |
| | | |
| | | </select> |
| | | |
| | | |
| | | <!-- 修改路由信息 add by wuxw 2018-07-03 --> |
| | | <update id="updateMenuGroupInfo" parameterType="Map"> |
| | |
| | | </if> |
| | | </set> |
| | | where t.g_id= #{gId} |
| | | |
| | | </update> |
| | | |
| | | <!-- 查询路由数量 add by wuxw 2018-07-03 --> |
| | |
| | | </if> |
| | | </select> |
| | | |
| | | |
| | | <!-- 保存路由信息至 instance表中 add by wuxw 2018-07-03 --> |
| | | <insert id="saveBasePrivilegeRelInfo" parameterType="Map"> |
| | | insert into p_privilege_rel( |
| | | p_id,pg_id |
| | | ) values ( |
| | | #{pId},#{pgId} |
| | | ) |
| | | |
| | | insert into p_privilege_rel(p_id, pg_id) |
| | | values (#{pId}, #{pgId}) |
| | | </insert> |
| | | |
| | | |
| | | <!-- 保存路由信息至 instance表中 add by wuxw 2018-07-03 --> |
| | | <insert id="saveBasePrivilegeInfo" parameterType="Map"> |
| | | insert into p_privilege( |
| | | p_id,name,resource,domain,description,m_id |
| | | ) values ( |
| | | #{pId},#{name},#{resource},#{domain},#{description},#{mId} |
| | | ) |
| | | |
| | | insert into p_privilege(p_id, name, resource, domain, description, m_id) |
| | | values (#{pId}, #{name}, #{resource}, #{domain}, #{description}, #{mId}) |
| | | </insert> |
| | | |
| | | |
| | | <!-- 查询路由信息 add by wuxw 2018-07-03 --> |
| | | <select id="getBasePrivilegeInfo" parameterType="Map" resultType="Map"> |
| | |
| | | <if test="page != -1 and page != null "> |
| | | limit #{page}, #{row} |
| | | </if> |
| | | |
| | | </select> |
| | | |
| | | |
| | | <!-- 修改路由信息 add by wuxw 2018-07-03 --> |
| | | <update id="updateBasePrivilegeInfo" parameterType="Map"> |
| | |
| | | </if> |
| | | </set> |
| | | where t.p_id= #{pId} |
| | | |
| | | </update> |
| | | |
| | | <!-- 修改路由信息 add by wuxw 2018-07-03 --> |
| | |
| | | |
| | | </set> |
| | | where t.p_id= #{pId} |
| | | |
| | | </update> |
| | | |
| | | |
| | | <!-- 查询路由数量 add by wuxw 2018-07-03 --> |
| | | <select id="queryBasePrivilegesCount" parameterType="Map" resultType="Map"> |
| | |
| | | </if> |
| | | </select> |
| | | |
| | | |
| | | <!-- 保存路由信息至 instance表中 add by wuxw 2018-07-03 --> |
| | | <insert id="saveMenuInfo" parameterType="Map"> |
| | | insert into m_menu( |
| | | m_id,name,g_id,url,seq,p_id,description,is_show |
| | | ) values ( |
| | | #{mId},#{name},#{gId},#{url},#{seq},'-1',#{description},#{isShow} |
| | | ) |
| | | insert into m_menu(m_id, name, g_id, url, seq, p_id, description, is_show) |
| | | values (#{mId}, #{name}, #{gId}, #{url}, #{seq}, '-1', #{description}, #{isShow}) |
| | | </insert> |
| | | |
| | | |
| | | <!-- 查询路由信息 add by wuxw 2018-07-03 --> |
| | | <select id="getMenuInfo" parameterType="Map" resultType="Map"> |
| | | select DISTINCT t.m_id mId,t.name,t.g_id gId,t.url,t.seq,t.p_id pId,t.description,t.is_show isShow, |
| | | if(t.is_show='Y','显示','不显示') isShowName, |
| | | t.m_id pId,t.name pName,mg.name menuGroupName,mg.store_type,st.name storeTypeName |
| | | t.m_id pId,t.name pName,mg.name gName,mg.store_type,st.name storeTypeName |
| | | from m_menu t,p_privilege p,m_menu_group mg,store_type st |
| | | where t.status_cd= '0' |
| | | and p.status_cd= '0' |
| | |
| | | <if test="gId !=null and gId != ''"> |
| | | and t.g_id= #{gId} |
| | | </if> |
| | | <if test="gName !=null and gName != ''"> |
| | | and mg.name= #{gName} |
| | | </if> |
| | | <if test="name !=null and name != ''"> |
| | | and t.name like concat('%',#{name},'%') |
| | | </if> |
| | | <if test="mName !=null and mName != ''"> |
| | | and t.name like concat('%',#{mName},'%') |
| | | </if> |
| | | |
| | | <if test="domain !=null and domain != ''"> |
| | | and p.domain= #{domain} |
| | | </if> |
| | |
| | | AND ppr.status_cd = '0' |
| | | ) |
| | | </if> |
| | | order by t.m_id desc |
| | | order by t.seq |
| | | <if test="page != -1 and page != null "> |
| | | limit #{page}, #{row} |
| | | </if> |
| | | |
| | | </select> |
| | | |
| | | |
| | | <!-- 修改路由信息 |
| | | ,t.description,t.is_show isShow |
| | | add by wuxw 2018-07-03 --> |
| | | <!-- 修改路由信息 add by wuxw 2018-07-03 --> |
| | | <update id="updateMenuInfo" parameterType="Map"> |
| | | update m_menu t |
| | | <set> |
| | |
| | | </if> |
| | | </set> |
| | | where t.m_id= #{mId} |
| | | |
| | | </update> |
| | | |
| | | <!-- 查询路由数量 add by wuxw 2018-07-03 --> |
| | |
| | | <if test="gId !=null and gId != ''"> |
| | | and t.g_id= #{gId} |
| | | </if> |
| | | <if test="gName !=null and gName != ''"> |
| | | and mg.name= #{gName} |
| | | </if> |
| | | <if test="name !=null and name != ''"> |
| | | and t.name like concat('%',#{name},'%') |
| | | </if> |
| | |
| | | and t.name like concat('%',#{mName},'%') |
| | | </if> |
| | | <if test="pId !=null and pId != ''"> |
| | | and t.p_id= #{pId} |
| | | and p.p_id= #{pId} |
| | | </if> |
| | | <if test="domain !=null and domain != ''"> |
| | | and p.domain= #{domain} |
| | |
| | | </if> |
| | | <if test="mId !=null and mId != ''"> |
| | | and p.m_id= #{mId} |
| | | </if> |
| | | <if test="pId !=null and pId != ''"> |
| | | and t.p_id= #{pId} |
| | | </if> |
| | | <if test="isShow !=null and isShow != ''"> |
| | | and t.is_show= #{isShow} |
| | |
| | | AND ppr.status_cd = '0' |
| | | </select> |
| | | |
| | | |
| | | <select id="hasPrivilege" parameterType="Map" resultType="Map"> |
| | | SELECT DISTINCT tt.p_id `pId`,tt.name,tt.pg_id pgId,tt.pg_name pgName,tt.description,tt.create_time createTime FROM ( |
| | | SELECT pp.*,'-1' AS pg_id,'' AS pg_name FROM p_privilege_user ppu,p_privilege pp |
| | | WHERE ppu.`p_id` = pp.`p_id` |
| | | AND pp.p_id = #{pId} |
| | | AND ppu.`privilege_flag` = '0' |
| | | AND ppu.`user_id` = #{userId} |
| | | AND ppu.`status_cd` = '0' |
| | | AND pp.`status_cd` = '0' |
| | | UNION |
| | | SELECT pp.*,ppg.pg_id,ppg.name pg_name FROM p_privilege_user ppu,p_privilege_group ppg,p_privilege pp,p_privilege_rel ppr |
| | | WHERE ppu.`p_id` = ppr.pg_id |
| | | AND ppr.pg_id = ppg.pg_id |
| | | AND ppr.p_id = pp.`p_id` |
| | | AND pp.p_id = #{pId} |
| | | AND ppu.`privilege_flag` = '1' |
| | | AND ppu.`user_id` = #{userId} |
| | | AND ppu.`status_cd` = '0' |
| | | AND pp.`status_cd` = '0' |
| | | AND ppg.status_cd = '0' |
| | | AND ppr.status_cd = '0' |
| | | ) tt |
| | | </select> |
| | | </mapper> |