수정건 수정

This commit is contained in:
USER
2022-09-01 16:54:21 +09:00
parent 648a16ad4f
commit 8dcd9365b6
15 changed files with 216 additions and 33 deletions

View File

@@ -248,6 +248,19 @@
</foreach>
</select>
<select id="selectSndrnoListAll" parameterType="kr.co.uplus.ez.api.sendNumMgt.dto.InsertNumberReqDto" resultType="kr.co.uplus.ez.api.sendNumMgt.dto.InsertNumber">
/* sendNumMgt-mapper.xml(selectSndrnoListAll) */
SELECT
SNDRNO AS sendNum
FROM
hubez_common.EZ_SVC_SNDRNO
WHERE 1=1
AND SNDRNO IN
<foreach collection="list" item="item" index="i" open="(" separator="," close=")">
#{item.sendNum}
</foreach>
</select>
<select id="selectRegReqNo" resultType="String">
SELECT CONCAT(DATE_FORMAT(NOW(), '%Y%m'), LPAD(hubez_common.FUN_NEXT_SEQ('SNDRNO_REG_SEQ'), 7, '0')) AS REG_REQ_NO
</select>