qirong
2023-04-07 a499e5a737991461554805af6b72fba65a680776
ycl-platform/src/main/resources/mapper/NewsPoliceDao.xml
@@ -1,32 +1,37 @@
<?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="organizationName" column="organization_name" jdbcType="VARCHAR"/>
    </resultMap>
    <!-- 批量插入 -->
    <insert id="insertBatch" keyProperty="id" useGeneratedKeys="true">
        insert into news_website.news_police(rname, create_time, update_time, organization_name)
        values
        <foreach collection="entities" item="entity" separator=",">
        (#{entity.rname}, #{entity.createTime}, #{entity.updateTime}, #{entity.organizationName})
        </foreach>
    </insert>
    <!-- 批量插入或按主键更新 -->
    <insert id="insertOrUpdateBatch" keyProperty="id" useGeneratedKeys="true">
        insert into news_website.news_police(rname, create_time, update_time, organization_name)
        values
        <foreach collection="entities" item="entity" separator=",">
            (#{entity.rname}, #{entity.createTime}, #{entity.updateTime}, #{entity.organizationName})
        </foreach>
        on duplicate key update
         rname = values(rname) , create_time = values(create_time) , update_time = values(update_time) , organization_name = values(organization_name)     </insert>
</mapper>
<?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>