|
@ -4,13 +4,13 @@ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<insert id="insertBatch" parameterType="ArrayList"> |
|
|
<insert id="insertBatch" parameterType="ArrayList"> |
|
|
insert into t_employee (id, userid,corpId, name, |
|
|
insert into t_employee (id, userid,corpid, name, |
|
|
gender, status, address, |
|
|
gender, status, address, |
|
|
hide_mobile, english_name, tall_user_id |
|
|
hide_mobile, english_name, tall_user_id |
|
|
) |
|
|
) |
|
|
values |
|
|
values |
|
|
<foreach collection="list" item="item" separator=","> |
|
|
<foreach collection="list" item="item" separator=","> |
|
|
(#{item.id,jdbcType=BIGINT}, #{item.userid,jdbcType=VARCHAR}, #{item.corpId,jdbcType=VARCHAR}, #{item.name,jdbcType=VARCHAR}, |
|
|
(#{item.id,jdbcType=BIGINT}, #{item.userid,jdbcType=VARCHAR}, #{item.corpid,jdbcType=VARCHAR}, #{item.name,jdbcType=VARCHAR}, |
|
|
#{item.gender,jdbcType=TINYINT}, #{item.status,jdbcType=TINYINT}, #{item.address,jdbcType=VARCHAR}, |
|
|
#{item.gender,jdbcType=TINYINT}, #{item.status,jdbcType=TINYINT}, #{item.address,jdbcType=VARCHAR}, |
|
|
#{item.hideMobile,jdbcType=TINYINT}, #{item.englishName,jdbcType=VARCHAR}, #{item.tallUserId,jdbcType=BIGINT} |
|
|
#{item.hideMobile,jdbcType=TINYINT}, #{item.englishName,jdbcType=VARCHAR}, #{item.tallUserId,jdbcType=BIGINT} |
|
|
) |
|
|
) |
|
|