Commit 2b2031e6 by jiang'yun

修改

parent f6c423f4
......@@ -62,4 +62,9 @@ public interface SjDzfcMapper
* @return 结果
*/
public int deleteSjDzfcByIds(Long[] ids);
int deleteSjDzfcByJh(String jh);
int insertSjDzfcBatch(List<SjDzfc> sjDzfcList);
}
......@@ -58,4 +58,10 @@ public interface SjJygjGdfdcsMapper
* @return 结果
*/
public int deleteSjJygjGdfdcsByIds(Long[] ids);
int deleteSjJygjGdfdcsByJh(String jh);
int insertSjJygjGdfdcsBatch(List<SjJygjGdfdcs> sjJygjGdfdcsList);
}
......@@ -58,4 +58,9 @@ public interface SjJygjGdsjgdcsMapper
* @return 结果
*/
public int deleteSjJygjGdsjgdcsByIds(Long[] ids);
int deleteSjJygjGdsjgdcsByJh(String jh);
int insertSjJygjGdsjgdcsBatch(List<SjJygjGdsjgdcs> sjJygjGdsjgdcsList);
}
......@@ -58,4 +58,9 @@ public interface SjTgTgqdjhMapper
* @return 结果
*/
public int deleteSjTgTgqdjhByIds(Long[] ids);
int deleteSjTgTgqdjhByJh(String jh);
int insertSjTgTgqdjhBatch(List<SjTgTgqdjh> sjTgTgqdjhList);
}
......@@ -58,4 +58,10 @@ public interface SjTgTgxnsjMapper
* @return 结果
*/
public int deleteSjTgTgxnsjByIds(Long[] ids);
int deleteSjTgTgxnsjByJh(String jh);
int insertSjTgTgxnsjBatch(List<SjTgTgxnsj> sjTgTgxnsjList);
}
......@@ -58,4 +58,9 @@ public interface SjTgTgzMapper
* @return 结果
*/
public int deleteSjTgTgzByIds(Long[] ids);
int deleteSjTgTgzByJh(String jh);
int insertSjTgTgzBatch(List<SjTgTgz> sjTgTgzList);
}
......@@ -58,4 +58,9 @@ public interface SjZjyCljlMapper
* @return 结果
*/
public int deleteSjZjyCljlByIds(Long[] ids);
int deleteSjZjyCljlByJh(String jh);
int insertSjZjyCljlBatch(List<SjZjyCljl> sjZjyCljlList);
}
......@@ -58,4 +58,11 @@ public interface SjZjyFdsjMapper
* @return 结果
*/
public int deleteSjZjyFdsjByIds(Long[] ids);
int deleteSjZjyFdsjByJh(String jh);
int insertSjZjyFdsjBatch(List<SjZjyFdsj> sjZjyFdsjList);
}
......@@ -58,4 +58,9 @@ public interface SjZjyFdxnbMapper
* @return 结果
*/
public int deleteSjZjyFdxnbByIds(Long[] ids);
int deleteSjZjyFdxnbByJh(String jh);
int insertSjZjyFdxnbBatch(List<SjZjyFdxnb> sjZjyFdxnbList);
}
......@@ -58,4 +58,10 @@ public interface SjZlyqMapper
* @return 结果
*/
public int deleteSjZlyqByIds(Long[] ids);
int deleteSjZlyqByJh(String jh);
int insertSjZlyqBatch(List<SjZlyq> sjZlyqList);
}
......@@ -58,4 +58,10 @@ public interface SjZlyqXxMapper
* @return 结果
*/
public int deleteSjZlyqXxByIds(Long[] ids);
int deleteSjZlyqXxByJh(String jh);
int insertSjZlyqXxBatch(List<SjZlyqXx> sjZlyqXxList);
}
package com.ruoyi.project.zjsgfa.mapper;
import java.util.List;
import com.ruoyi.project.zjsgfa.domain.SjZlyq;
import com.ruoyi.project.zjsgfa.domain.SjZlyqZbyq;
/**
......@@ -58,4 +60,9 @@ public interface SjZlyqZbyqMapper
* @return 结果
*/
public int deleteSjZlyqZbyqByIds(Long[] ids);
int deleteSjZlyqZbyqByJh(String jh);
int insertSjZlyqZbyqBatch(List<SjZlyq> sjZlyqList);
}
......@@ -142,6 +142,46 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="sjyxts != null">#{sjyxts},</if>
</trim>
</insert>
<insert id="insertSjDzfcBatch">
INSERT INTO sj_dzfc
(
dc_j, dc_x, dc_t, dc_z, dc_d,
sjjh, sjdcs, sjjcgx, sjhd, sjddsd,
yjjh1, yjdcs1, yjjcgx1, yjhyjd1, yjddsd1,
yjjh2, yjdcs2, yjjcgx2, yjhyjd2, yjddsd2,
yjyxts1, yjyxts2, sjyxts
)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.dcJ},
#{item.dcX},
#{item.dcT},
#{item.dcZ},
#{item.dcD},
#{item.sjjh},
#{item.sjdcs},
#{item.sjjcgx},
#{item.sjhd},
#{item.sjddsd},
#{item.yjjh1},
#{item.yjdcs1},
#{item.yjjcgx1},
#{item.yjhyjd1},
#{item.yjddsd1},
#{item.yjjh2},
#{item.yjdcs2},
#{item.yjjcgx2},
#{item.yjhyjd2},
#{item.yjddsd2},
#{item.yjyxts1},
#{item.yjyxts2},
#{item.sjyxts}
)
</foreach>
</insert>
<update id="updateSjDzfc" parameterType="SjDzfc">
update sj_dzfc
......@@ -187,4 +227,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjDzfcByJh">
delete from sj_dzfc where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
......@@ -92,6 +92,27 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<insert id="insertSjJygjGdfdcsBatch">
INSERT INTO sj_jygj_gdfdcs
(jh, js, jx, fw, cs, spwy, nbwy, dxwy, qjbhl, gjm, bd, bz)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.jh},
#{item.js},
#{item.jx},
#{item.fw},
#{item.cs},
#{item.spwy},
#{item.nbwy},
#{item.dxwy},
#{item.qjbhl},
#{item.gjm},
#{item.bd},
#{item.bz}
)
</foreach>
</insert>
<update id="updateSjJygjGdfdcs" parameterType="SjJygjGdfdcs">
update sj_jygj_gdfdcs
......@@ -126,4 +147,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjJygjGdfdcsByJh">
delete from sj_jygj_gdfdcs where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
......@@ -100,6 +100,29 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<insert id="insertSjJygjGdsjgdcsBatch">
INSERT INTO sj_jygj_gdsjgdcs
(jh, js, jx, fw, bhfw, cs, bhj, nbwy, dxwy, zxl, fwbhl, qjbhl, gjm, bz)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.jh},
#{item.js},
#{item.jx},
#{item.fw},
#{item.bhfw},
#{item.cs},
#{item.bhj},
#{item.nbwy},
#{item.dxwy},
#{item.zxl},
#{item.fwbhl},
#{item.qjbhl},
#{item.gjm},
#{item.bz}
)
</foreach>
</insert>
<update id="updateSjJygjGdsjgdcs" parameterType="SjJygjGdsjgdcs">
update sj_jygj_gdsjgdcs
......@@ -136,4 +159,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjJygjGdsjgdcsByJh">
delete from sj_jygj_gdsjgdcs where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
......@@ -96,6 +96,30 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<insert id="insertSjTgTgqdjhBatch">
INSERT INTO sj_tg_tgqdjh
(jh, kc, jd, mmzl, djz, ljz, zdzhkwj, aqxskwj, zdzhkny, aqxskny, zdzhkl, aqxskl, bz)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.jh},
#{item.kc},
#{item.jd},
#{item.mmzl},
#{item.djz},
#{item.ljz},
#{item.zdzhkwj},
#{item.aqxskwj},
#{item.zdzhkny},
#{item.aqxskny},
#{item.zdzhkl},
#{item.aqxskl},
#{item.bz}
)
</foreach>
</insert>
<update id="updateSjTgTgqdjh" parameterType="SjTgTgqdjh">
update sj_tg_tgqdjh
......@@ -131,4 +155,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjTgTgqdjhByJh">
delete from sj_tg_tgqdjh where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
......@@ -88,6 +88,26 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<insert id="insertSjTgTgxnsjBatch">
INSERT INTO sj_tg_tgxnsj
(jh, wj, gj, bh, kx, mmzl, jgwj, klqd, kjqd, knyqd, bz)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.jh},
#{item.wj},
#{item.gj},
#{item.bh},
#{item.kx},
#{item.mmzl},
#{item.jgwj},
#{item.klqd},
#{item.kjqd},
#{item.knyqd},
#{item.bz}
)
</foreach>
</insert>
<update id="updateSjTgTgxnsj" parameterType="SjTgTgxnsj">
update sj_tg_tgxnsj
......@@ -121,4 +141,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjTgTgxnsjByJh">
delete from sj_tg_tgxnsj where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
......@@ -88,6 +88,26 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<insert id="insertSjTgTgzBatch">
INSERT INTO sj_tg_tgz
(jh, kc, jd, wj, gj, bh, kx, zjsknj, cd, zjymd, bz)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.jh},
#{item.kc},
#{item.jd},
#{item.wj},
#{item.gj},
#{item.bh},
#{item.kx},
#{item.zjsknj},
#{item.cd},
#{item.zjymd},
#{item.bz}
)
</foreach>
</insert>
<update id="updateSjTgTgz" parameterType="SjTgTgz">
update sj_tg_tgz
......@@ -121,4 +141,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjTgTgzByJh">
delete from sj_tg_tgz where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
......@@ -76,6 +76,23 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<insert id="insertSjZjyCljlBatch">
INSERT INTO sj_zjy_cljl
(jh, clmc, ykjl, ekjl, skjl, sikjl, wkjl, bz)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.jh},
#{item.clmc},
#{item.ykjl},
#{item.ekjl},
#{item.skjl},
#{item.sikjl},
#{item.wkjl},
#{item.bz}
)
</foreach>
</insert>
<update id="updateSjZjyCljl" parameterType="SjZjyCljl">
update sj_zjy_cljl
......@@ -106,4 +123,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjZjyCljlByJh">
delete from sj_zjy_cljl where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
......@@ -64,6 +64,20 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<insert id="insertSjZjyFdsjBatch">
INSERT INTO sj_zjy_fdsj
(jh, kc, jd, zjytx, bz)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.jh},
#{item.kc},
#{item.jd},
#{item.zjytx},
#{item.bz}
)
</foreach>
</insert>
<update id="updateSjZjyFdsj" parameterType="SjZjyFdsj">
update sj_zjy_fdsj
......@@ -91,4 +105,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjZjyFdsjByJh">
delete from sj_zjy_fdsj where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
......@@ -100,6 +100,31 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<insert id="insertSjZjyFdxnbBatch">
INSERT INTO sj_zjy_fdxnb
(jh, jd, md, msldnd, apilsl, apinb, jql, ph, hsl, zgh, mzxs, dql, sxnd, bz)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.jh},
#{item.jd},
#{item.md},
#{item.msldnd},
#{item.apilsl},
#{item.apinb},
#{item.jql},
#{item.ph},
#{item.hsl},
#{item.zgh},
#{item.mzxs},
#{item.dql},
#{item.sxnd},
#{item.bz}
)
</foreach>
</insert>
<update id="updateSjZjyFdxnb" parameterType="SjZjyFdxnb">
update sj_zjy_fdxnb
......@@ -136,4 +161,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjZjyFdxnbByJh">
delete from sj_zjy_fdxnb where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
......@@ -64,6 +64,20 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<insert id="insertSjZlyqBatch">
INSERT INTO sj_zlyq
(jh, jd, jxj, qjbhl, bz)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.jh},
#{item.jd},
#{item.jxj},
#{item.qjbhl},
#{item.bz}
)
</foreach>
</insert>
<update id="updateSjZlyq" parameterType="SjZlyq">
update sj_zlyq
......@@ -91,4 +105,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjZlyqByJh">
delete from sj_zlyq where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
......@@ -68,6 +68,21 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<insert id="insertSjZlyqXxBatch">
INSERT INTO sj_zlyq_xx
(jh, dxjzlyq, gjzlyq, wcjjkzlyq, yqcwrpdyq, bz)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.jh},
#{item.dxjzlyq},
#{item.gjzlyq},
#{item.wcjjkzlyq},
#{item.yqcwrpdyq},
#{item.bz}
)
</foreach>
</insert>
<update id="updateSjZlyqXx" parameterType="SjZlyqXx">
update sj_zlyq_xx
......@@ -96,4 +111,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjZlyqXxByJh">
delete from sj_zlyq_xx where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
......@@ -60,6 +60,19 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateTime != null">#{updateTime},</if>
</trim>
</insert>
<insert id="insertSjZlyqZbyqBatch">
INSERT INTO sj_zlyq_zbyq
(jh, bd, bbj, bz)
VALUES
<foreach collection="list" item="item" separator=",">
(
#{item.jh},
#{item.bd},
#{item.bbj},
#{item.bz}
)
</foreach>
</insert>
<update id="updateSjZlyqZbyq" parameterType="SjZlyqZbyq">
update sj_zlyq_zbyq
......@@ -86,4 +99,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
#{id}
</foreach>
</delete>
<delete id="deleteSjZlyqZbyqByJh">
delete from sj_zlyq_zbyq where jh = #{jh}
</delete>
</mapper>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment