mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 20:33:53 +09:00
- 시스템관리 > 관리자목록조회, 관리자등록, 관리자수정, 관리자삭제, 관리자상세조회
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
<mapper namespace="kr.co.uplus.ez.api.comm.CommMapper">
|
||||
|
||||
<select id="getMenuByRole" parameterType="string" resultType="kr.co.uplus.ez.api.comm.Menu">
|
||||
<select id="getMenuByRole" parameterType="string" resultType="kr.co.uplus.ez.api.comm.dto.Menu">
|
||||
/* comm-mapper.xml(getMenuByRole) */
|
||||
SELECT
|
||||
MENU_NO AS menuNo
|
||||
@@ -33,7 +33,33 @@
|
||||
) R ON M2.MENU_NO = R.MENU_NO
|
||||
) A
|
||||
ORDER BY
|
||||
menuLvl, menuOdrg;
|
||||
menuLvl, menuOdrg
|
||||
</select>
|
||||
|
||||
<select id="getCommCode" parameterType="kr.co.uplus.ez.api.comm.dto.CodeReqDto" resultType="kr.co.uplus.ez.api.comm.dto.Code">
|
||||
/* comm-mapper.xml(getCommCode) */
|
||||
SELECT
|
||||
T2.GRP_CD as grp_cd
|
||||
,T2.DTL_CD as code
|
||||
,T2.DTL_CD_NM as codeNm
|
||||
,T2.SORT_ODRG as sortOrder
|
||||
,T2.USE_YN as useYn
|
||||
FROM ${HUBEZ_ADMIN}.EZ_CD_GRP T1
|
||||
LEFT JOIN ${HUBEZ_ADMIN}.EZ_CD_DTL T2
|
||||
ON T1.GRP_CD = T2.GRP_CD
|
||||
WHERE T1.GRP_CD = #{grpCd}
|
||||
ORDER BY T2.SORT_ODRG
|
||||
</select>
|
||||
|
||||
<select id="getAuthCode" resultType="kr.co.uplus.ez.api.comm.dto.Auth">
|
||||
/* comm-mapper.xml(getAuthCode) */
|
||||
SELECT
|
||||
AUT_CD,
|
||||
AUT_NM,
|
||||
USE_YN
|
||||
FROM
|
||||
${HUBEZ_ADMIN}.EZ_ADM_AUT
|
||||
ORDER BY
|
||||
AUT_CD
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user