Commit 31808043 authored by ZWT's avatar ZWT

得到的

parent fbc45936
...@@ -23,7 +23,5 @@ public interface SysAuthOuScopeViewMapper { ...@@ -23,7 +23,5 @@ public interface SysAuthOuScopeViewMapper {
*/ */
List<SysAuthOuScopeView> selectOuInfoByCondition(SysAuthOuScopeView record); List<SysAuthOuScopeView> selectOuInfoByCondition(SysAuthOuScopeView record);
SysAuthOuScopeView selectOuMediaTypeByUserId(SysAuthOuScopeView scopeView);
List<SysAuthOuScopeUserInfo> selectScopeUserInfo(SysAuthOuScopeView scopeView); List<SysAuthOuScopeUserInfo> selectScopeUserInfo(SysAuthOuScopeView scopeView);
} }
...@@ -21,8 +21,6 @@ public interface SysMenuViewMapper { ...@@ -21,8 +21,6 @@ public interface SysMenuViewMapper {
List<SysMenuView> selectSysMenuListByUserIdAndMediaType(SysMenuView record); List<SysMenuView> selectSysMenuListByUserIdAndMediaType(SysMenuView record);
List<SysMenuView> selectMediumTypeByUserId(SysMenuView menuView);
List<SysMenuView> selectParentMenus(SysMenuView menuView); List<SysMenuView> selectParentMenus(SysMenuView menuView);
void updateShowChildren(SysMenuView menuView); void updateShowChildren(SysMenuView menuView);
......
...@@ -105,11 +105,6 @@ ...@@ -105,11 +105,6 @@
) )
</select> </select>
<select id="selectOuMediaTypeByUserId" parameterType="pps.core.system.entity.SysAuthOuScopeView"
resultType="pps.core.system.entity.SysAuthOuScopeView">
SELECT 'GAS' AS MEDIA_TYPE
</select>
<select id="selectScopeUserInfo" resultType="pps.core.system.entity.SysAuthOuScopeUserInfo"> <select id="selectScopeUserInfo" resultType="pps.core.system.entity.SysAuthOuScopeUserInfo">
SELECT DISTINCT SU.ID, SELECT DISTINCT SU.ID,
SU.USER_NAME, SU.USER_NAME,
......
...@@ -162,10 +162,6 @@ ...@@ -162,10 +162,6 @@
FROM TEMPS FROM TEMPS
</select> </select>
<select id="selectMediumTypeByUserId" parameterType="pps.core.system.entity.SysMenuView" resultMap="BaseResultMap">
SELECT 'GAS' AS MEDIA_TYPE
</select>
<select id="selectParentMenus" parameterType="pps.core.system.entity.SysMenuView" resultMap="BaseResultMap"> <select id="selectParentMenus" parameterType="pps.core.system.entity.SysMenuView" resultMap="BaseResultMap">
SELECT T.ID, T.MENU_NAME, T.PARENT_MENU_ID SELECT T.ID, T.MENU_NAME, T.PARENT_MENU_ID
FROM (WITH RECURSIVE TEMPS AS FROM (WITH RECURSIVE TEMPS AS
......
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