충전 선택삭제 수정

This commit is contained in:
2023-03-28 15:14:12 +09:00
parent 2127cc00d2
commit 0c8d3781fb
2 changed files with 7 additions and 2 deletions

View File

@@ -3,7 +3,9 @@ package kr.co.uplus.ez.api.custMgt.dto;
import java.io.Serializable;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class ChrgDelete implements Serializable {
@ApiModelProperty(example = "사용여부", name = "사용여부", dataType = "String")

View File

@@ -1275,12 +1275,15 @@
)
</insert>
<update id="deleteChrg" parameterType="kr.co.uplus.ez.api.custMgt.dto.ChrgInfo">
<update id="deleteChrg" parameterType="kr.co.uplus.ez.api.custMgt.dto.DeleteChrgReqDto">
UPDATE
hubez_admin.EZ_CHARGE_MNG ecm
set
ecm.USE_YN ='N'
WHERE ecm.CHRG_SEQ = #{chrgSeq}
WHERE ecm.CHRG_SEQ in
<foreach collection="list" index="i" item="list" open="(" close=")" separator=",">
#{list.chrgSeq}
</foreach>
</update>