| | |
| | | <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"/>
|
| | | <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, organization_name)
|
| | | 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.organizationName})
|
| | | (#{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, organization_name)
|
| | | 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.organizationName})
|
| | | (#{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) , organization_name = values(organization_name) </insert>
|
| | | rname = values(rname) , create_time = values(create_time) , update_time = values(update_time) , news_department_id = values(news_department_id) , phone = values(phone) </insert>
|
| | |
|
| | | </mapper>
|
| | |
|