<insert id="insertBatch" parameterType="java.util.List">
BEGIN
<foreach collection="list" item="item" index="index" separator="">
insert into a_country
(serial_no, country_code, chn_name, en_name, is_delete)
VALUES
(
SEQ_A_COUNTRY.NEXTVAL,#{item.countryCode,jdbcType=VARCHAR},#{item.chnName,jdbcType=VARCHAR},
#{item.enName,jdbcType=VARCHAR},'1' );
</foreach>
COMMIT;
END;
</insert>