|
@@ -0,0 +1,29 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
+
|
|
|
+<mapper namespace="com.rongwei.bscommon.sys.dao.ZhcxItpTemplateNodesDao">
|
|
|
+
|
|
|
+ <insert id="batchInsertNodes" parameterType="java.util.List">
|
|
|
+ INSERT INTO ZHCX_ITP_TEMPLATE_NODES (
|
|
|
+ ID, ITPID, ITPNAME, PID, NODENAME, ENNAME, PNODENAME, PNODEENNAME, PNODEID,
|
|
|
+ PRENODE, PRENODEID, NODETYPE, SORTINDEX, LEVEL, ISOFFLINE, NEEDFILES, NOTICEFILE,
|
|
|
+ CHECKFILE, RELATEIDS, TENANTID, ROPTION, OUTNOTICEFILE, REFNODEID, REFTMPID,
|
|
|
+ ISNEEDOUT, PATH, INSPECTIONTYPE, TYPE1, TYPE2, ISSUPP, CHECKTMPID, CHECKROLE,
|
|
|
+ CHECKROLEID, ORGID, ORGNAME, ISNEEDINPUT
|
|
|
+ )
|
|
|
+ VALUES
|
|
|
+ <foreach collection="list" item="item" separator=",">
|
|
|
+ (
|
|
|
+ #{item.id}, #{item.itpid}, #{item.itpname}, #{item.pid}, #{item.nodename},
|
|
|
+ #{item.enname}, #{item.pnodename}, #{item.pnodeenname}, #{item.pnodeid},
|
|
|
+ #{item.prenode}, #{item.prenodeid}, #{item.nodetype}, #{item.sortindex},
|
|
|
+ #{item.level}, #{item.isoffline}, #{item.needfiles}, #{item.noticefile},
|
|
|
+ #{item.checkfile}, #{item.relateids}, #{item.tenantid}, #{item.roption},
|
|
|
+ #{item.outnoticefile}, #{item.refnodeid}, #{item.reftmpid}, #{item.isneedout},
|
|
|
+ #{item.path}, #{item.inspectiontype}, #{item.type1}, #{item.type2}, #{item.issupp},
|
|
|
+ #{item.checktmpid}, #{item.checkrole}, #{item.checkroleid}, #{item.orgid},
|
|
|
+ #{item.orgname}, #{item.isneedinput}
|
|
|
+ )
|
|
|
+ </foreach>
|
|
|
+ </insert>
|
|
|
+</mapper>
|