mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 03:57:56 +09:00
공지사항 삭제 기능 추가
This commit is contained in:
@@ -196,10 +196,26 @@
|
||||
|
||||
<!-- 첨부파일 삭제 -->
|
||||
<delete id="delNoticeFile" parameterType="kr.co.uplus.ez.api.homeMgt.dto.DelNoticeReqDto">
|
||||
/* homeMgt-mapper.xml(delNoticeFile) */
|
||||
DELETE FROM hubez_common.EZ_BBS_FATC
|
||||
WHERE BBS_NO = #{ntNo}
|
||||
AND FILE_NO = #{fileNo}
|
||||
</delete>
|
||||
|
||||
<!-- 공지사항 삭제 -->
|
||||
<delete id="deleteNotice" parameterType="kr.co.uplus.ez.api.homeMgt.dto.DeleteNoticeReqDto">
|
||||
/* homeMgt-mapper.xml(deleteNotice) */
|
||||
DELETE
|
||||
FROM
|
||||
hubez_common.EZ_NTBBS
|
||||
<where>
|
||||
NT_NO IN
|
||||
<foreach collection="list" item="item" index="i" open="("
|
||||
separator="," close=")">
|
||||
#{item.ntNo}
|
||||
</foreach>
|
||||
</where>
|
||||
</delete>
|
||||
|
||||
|
||||
<sql id="NoticeListCondition">
|
||||
|
||||
Reference in New Issue
Block a user