本地导入bug修改

This commit is contained in:
walker-sheng 2020-12-14 18:05:15 +08:00
parent 4e5cd4dce4
commit 06d340a72c

View File

@ -18,7 +18,7 @@ public interface OperatePlaceholderDAO extends MyBatisBaseDao<OperatePlaceholder
"insert into operate_placeholder (id, code, training_type, `type`, `name`, val, val_new) " + "insert into operate_placeholder (id, code, training_type, `type`, `name`, val, val_new) " +
" values " + " values " +
" <foreach collection=\"list\" item=\"entity\" separator=\",\"> " + " <foreach collection=\"list\" item=\"entity\" separator=\",\"> " +
" (#{entity.code,jdbcType=BIGINT}, #{entity.trainingType,jdbcType=VARCHAR}, #{entity.type,jdbcType=VARCHAR}, " + " (#{entity.id,jdbcType=BIGINT}, #{entity.code,jdbcType=VARCHAR}, #{entity.trainingType,jdbcType=VARCHAR}, #{entity.type,jdbcType=VARCHAR}, " +
" #{entity.name,jdbcType=VARCHAR}, #{entity.val,jdbcType=VARCHAR}, #{entity.valNew,jdbcType=VARCHAR})"+ " #{entity.name,jdbcType=VARCHAR}, #{entity.val,jdbcType=VARCHAR}, #{entity.valNew,jdbcType=VARCHAR})"+
" </foreach>" + " </foreach>" +
"</script>") "</script>")