28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||
|
|
<mapper namespace="com.hzs.bonus.bonus.mapper.CuMemberRetailLogMapper">
|
||
|
|
|
||
|
|
<!-- 通用查询映射结果 -->
|
||
|
|
<resultMap id="BaseResultMap" type="com.hzs.common.domain.member.bonus.CuMemberRetailLog">
|
||
|
|
<id column="PK_ID" property="pkId" />
|
||
|
|
<result column="DEL_FLAG" property="delFlag" />
|
||
|
|
<result column="CREATION_TIME" property="creationTime" />
|
||
|
|
<result column="MODIFIED_TIME" property="modifiedTime" />
|
||
|
|
<result column="PK_COUNTRY" property="pkCountry" />
|
||
|
|
<result column="PK_CREATOR" property="pkCreator" />
|
||
|
|
<result column="PK_MODIFIED" property="pkModified" />
|
||
|
|
<result column="ORDER_CODE" property="orderCode" />
|
||
|
|
<result column="ENABLE_STATUS" property="enableStatus" />
|
||
|
|
<result column="MSG" property="msg" />
|
||
|
|
<result column="RETRY_NUM" property="retryNum" />
|
||
|
|
</resultMap>
|
||
|
|
<update id="updateCuMemberRetailLogByList">
|
||
|
|
update cu_member_retail_log set enable_status=0
|
||
|
|
where del_flag=0 and pk_id in
|
||
|
|
<foreach collection="cuMemberRetailLogs" item="item" open="(" close=")" separator=",">
|
||
|
|
#{item.pkId}
|
||
|
|
</foreach>
|
||
|
|
</update>
|
||
|
|
|
||
|
|
</mapper>
|