2021与蓝度共同重构项目,服务端
liuhaonan
2022-05-11 7b43c04dd530bdd193e0cf02c4e19ba7c2ee2c11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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.sandu.ximon.dao.mapper.BroadcastV2TaskFileMapper">
 
    <resultMap id="BaseResultMap" type="com.sandu.ximon.dao.domain.BroadcastV2TaskFile">
            <result property="taskId" column="task_id" jdbcType="INTEGER"/>
            <result property="fileId" column="file_id" jdbcType="INTEGER"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        task_id,file_id
    </sql>
    <delete id="deleteByTaskId" parameterType="java.lang.Integer">
        delete from broadcast_v2_task_file where task_id=#{taskId}
    </delete>
</mapper>