You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
1015 B

<?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.charge.task.dao.LabelRelationDOMapper" >
<resultMap id="BaseResultMap" type="com.charge.task.model.LabelRelationDO" >
<!--
WARNING - @mbg.generated
-->
<id column="id" property="id" jdbcType="BIGINT" />
<result column="label_id" property="labelId" jdbcType="BIGINT" />
<result column="label_type" property="labelType" jdbcType="TINYINT" />
<result column="subordinate_id" property="subordinateId" jdbcType="BIGINT" />
<result column="operator_name" property="operatorName" jdbcType="VARCHAR" />
<result column="create_time" property="createTime" jdbcType="TIMESTAMP" />
<result column="update_time" property="updateTime" jdbcType="TIMESTAMP" />
</resultMap>
<delete id="deleteRelationByLabel">
delete from t_label_relation where label_id = #{id}
</delete>
</mapper>