123456789101112131415161718192021 |
- <?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.tzld.piaoquan.growth.common.dao.mapper.ext.CgiReplyBucketDataMapperExt">
- <update id="updateBucketDataTitleCoverByGhId">
- update cgi_reply_bucket_data
- set title = #{title},
- cover_url = #{cover}
- where gh_id = #{ghId}
- and mini_video_id = #{videoId}
- and is_delete = 0
- </update>
- <update id="deleteBucketDataByGhId">
- update cgi_reply_bucket_data
- set is_delete = 1
- where gh_id = #{ghId}
- and is_delete = 0
- </update>
- </mapper>
|