<?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.ycl.mapper.NewsPoliceDao">
|
|
<resultMap type="com.ycl.entity.NewsPolice" id="NewsPoliceMap">
|
<result property="id" column="id" jdbcType="VARCHAR"/>
|
<result property="rname" column="rname" jdbcType="VARCHAR"/>
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
<result property="newsDepartmentId" column="news_department_id" jdbcType="VARCHAR"/>
|
<result property="phone" column="phone" jdbcType="VARCHAR"/>
|
</resultMap>
|
|
<!-- 批量插入 -->
|
<insert id="insertBatch" keyProperty="id" useGeneratedKeys="true">
|
insert into news_website.news_police(rname, create_time, update_time, news_department_id, phone)
|
values
|
<foreach collection="entities" item="entity" separator=",">
|
(#{entity.rname}, #{entity.createTime}, #{entity.updateTime}, #{entity.newsDepartmentId}, #{entity.phone})
|
</foreach>
|
</insert>
|
<!-- 批量插入或按主键更新 -->
|
<insert id="insertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
|
insert into news_website.news_police(rname, create_time, update_time, news_department_id, phone)
|
values
|
<foreach collection="entities" item="entity" separator=",">
|
(#{entity.rname}, #{entity.createTime}, #{entity.updateTime}, #{entity.newsDepartmentId}, #{entity.phone})
|
</foreach>
|
on duplicate key update
|
rname = values(rname) , create_time = values(create_time) , update_time = values(update_time) , news_department_id = values(news_department_id) , phone = values(phone) </insert>
|
|
<insert id="savePolice" useGeneratedKeys="true" keyProperty="id" keyColumn="id">
|
insert into news_website.news_police(rname, create_time, update_time, news_department_id, phone)
|
values (#{entity.rname}, #{entity.createTime}, #{entity.updateTime}, #{entity.newsDepartmentId}, #{entity.phone})
|
</insert>
|
</mapper>
|
|