mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-06 23:04:44 +09:00
충전 선택삭제 수정
This commit is contained in:
@@ -3,7 +3,9 @@ package kr.co.uplus.ez.api.custMgt.dto;
|
|||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
public class ChrgDelete implements Serializable {
|
public class ChrgDelete implements Serializable {
|
||||||
|
|
||||||
@ApiModelProperty(example = "사용여부", name = "사용여부", dataType = "String")
|
@ApiModelProperty(example = "사용여부", name = "사용여부", dataType = "String")
|
||||||
|
|||||||
@@ -1275,12 +1275,15 @@
|
|||||||
)
|
)
|
||||||
</insert>
|
</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
|
UPDATE
|
||||||
hubez_admin.EZ_CHARGE_MNG ecm
|
hubez_admin.EZ_CHARGE_MNG ecm
|
||||||
set
|
set
|
||||||
ecm.USE_YN ='N'
|
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>
|
</update>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user