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.
|
|
|
<?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.daqing.financial.guarantee.mapper.DgProcessManageVisualMapper">
|
|
|
|
|
|
|
|
<!-- 通用查询映射结果 -->
|
|
|
|
<resultMap id="BaseResultMap" type="com.daqing.framework.domain.guarantee.DgProcessManageVisual">
|
|
|
|
<id column="id" property="id" />
|
|
|
|
<result column="process_manage_id" property="processManageId" />
|
|
|
|
<result column="user_id" property="userId" />
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
<select id="processVisualList" parameterType="int" resultType="int">
|
|
|
|
select user_id from dg_process_manage_visual
|
|
|
|
<where>
|
|
|
|
<if test="id != null">
|
|
|
|
process_manage_id = #{id}
|
|
|
|
</if>
|
|
|
|
</where>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<insert id="insertUserVisual">
|
|
|
|
INSERT INTO dg_process_manage_visual
|
|
|
|
(process_manage_id,user_id)
|
|
|
|
VALUES
|
|
|
|
<foreach collection="list" item="item" separator=",">
|
|
|
|
(#{item.processManageId},#{item.userId})
|
|
|
|
</foreach>
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
<delete id="delBatchUserVisual">
|
|
|
|
delete from dg_process_manage_visual where user_id IN
|
|
|
|
<foreach collection="list" open="(" separator="," close=")" item="item">
|
|
|
|
#{item}
|
|
|
|
</foreach>
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
</mapper>
|