결합할인수정 기능 보완

This commit is contained in:
Leeminha
2022-12-12 15:33:17 +09:00
parent 1d1da28f35
commit e8b8e17e9c
6 changed files with 37 additions and 2 deletions

View File

@@ -423,7 +423,6 @@
SET
CHG_ID = #{serviceId}
,CHG_DT = NOW()
,BIND_DC_YN = #{bindDcYn}
<if test="adminId != null and adminId != ''">
,SUBSMNGR_ID= #{adminId}
</if>
@@ -1130,4 +1129,15 @@
,now()
)
</insert>
<update id="updateBindDcYn" parameterType="kr.co.uplus.ez.api.custMgt.dto.SubsDetail">
/* custMgt-mapper.xml(updateBindDcYn) */
UPDATE hubez_common.EZ_SUBS_INFO
SET
BIND_DC_YN = #{bindDcYn},
CHG_DT = NOW()
WHERE
ENTR_NO = #{entrNo}
</update>
</mapper>