29 lines
655 B
XML
29 lines
655 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
|
<mapper namespace="com.itn.mjonApi.mjon.api.kakao.inqry.mapper.InqryMapper">
|
|
|
|
<select id="getChnlIds" resultType="MjKakaoProfileInfoVO">
|
|
|
|
SELECT
|
|
-- USER_ID
|
|
-- , PROFILE_ID
|
|
SENDER_KEY
|
|
-- , TOKEN
|
|
, PHONE_NUMBER
|
|
, YELLOW_ID
|
|
-- , CATEGORY_CODE
|
|
-- , CATEGORY_NAME
|
|
, FRST_REGIST_PNTTM
|
|
, FRST_REGISTER_ID
|
|
-- , LAST_UPDT_PNTTM
|
|
-- , LAST_UPDUSR_ID
|
|
-- , DELETE_YN
|
|
FROM mj_kakao_profile_info
|
|
WHERE DELETE_YN = 'N'
|
|
AND USER_ID = #{mberId}
|
|
|
|
</select>
|
|
</mapper> |