로그인 관련 / 메뉴 링크 추가 / 홈페이지 로그인 적용

This commit is contained in:
kimre
2022-07-08 14:07:33 +09:00
parent 3d05b45299
commit b2ff509948
73 changed files with 1251 additions and 668 deletions

View File

@@ -70,6 +70,11 @@
</choose>
</if>
</if>
<if test='channelAuthMenuNo != null and channelAuthMenuNo != ""'>
<if test='channelAuthMenuNo == "2003"'>
and esi.ATTRCTOR_ID = #{userId}
</if>
</if>
</sql>
<select id="selectTmpltListExcel" parameterType="kr.co.uplus.ez.api.channelMgt.dto.TmpltListReqDto" resultType="kr.co.uplus.ez.api.channelMgt.dto.TmpltInfo">
SELECT
@@ -102,4 +107,16 @@
SELECT
@ROWNUM := 0 ) AS R
</select>
<select id="selectChannelAuthMenuNo" parameterType="String" resultType="String">
SELECT
eaa.MENU_NO
FROM hubez_admin.EZ_ADM_USER eau
INNER JOIN hubez_admin.EZ_ADM_AUTMENU eaa
ON eau.AUT_CD = eaa.AUT_CD
WHERE 1=1
AND eau.OPRTR_ID = #{userId}
AND eaa.MENU_NO IN ('2002','2003')
LIMIT 1
</select>
</mapper>