mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-06 18:42:43 +09:00
충전 선택삭제 수정
This commit is contained in:
@@ -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")
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user