|
|
|
@ -95,10 +95,10 @@ |
|
|
|
|
</insert> |
|
|
|
|
|
|
|
|
|
<insert id="insertBatch" keyProperty="id" useGeneratedKeys="true"> |
|
|
|
|
insert into email_maintain(dept_id, company_code, dept_name, username, user_id, email_address, email_password, create_user, create_time, del_status, modify_time) |
|
|
|
|
insert into email_maintain(id, dept_id, company_code, dept_name, username, user_id, email_address, email_password, create_user, create_time, del_status, modify_time) |
|
|
|
|
values |
|
|
|
|
<foreach collection="entities" item="entity" separator=","> |
|
|
|
|
(#{entity.deptId}, #{entity.companyCode}, #{entity.deptName}, #{entity.username}, #{entity.userId}, #{entity.emailAddress}, #{entity.emailPassword},#{entity.createUser}, #{entity.createTime}, #{entity.delStatus}, #{entity.modifyTime}) |
|
|
|
|
(#{entity.id}, #{entity.deptId}, #{entity.companyCode}, #{entity.deptName}, #{entity.username}, #{entity.userId}, #{entity.emailAddress}, #{entity.emailPassword},#{entity.createUser}, #{entity.createTime}, #{entity.delStatus}, #{entity.modifyTime}) |
|
|
|
|
</foreach> |
|
|
|
|
</insert> |
|
|
|
|
|
|
|
|
|