Commit 5d5fa4c6 authored by gaopengxuan's avatar gaopengxuan

添加客商名称

parent 6e4102db
...@@ -280,6 +280,7 @@ public class GroupSyncServiceimpl implements GroupSyncService { ...@@ -280,6 +280,7 @@ public class GroupSyncServiceimpl implements GroupSyncService {
groupFallDataModel.setEntitycode(v.getEntity()); groupFallDataModel.setEntitycode(v.getEntity());
groupFallDataModel.setOrivalue(v.getMoney()); groupFallDataModel.setOrivalue(v.getMoney());
groupFallDataModel.setICPcode(v.getICP()); groupFallDataModel.setICPcode(v.getICP());
groupFallDataModel.setICPname(v.getIcpname());
groupFallDataModel.setYtenantId("dmrn1j0i"); groupFallDataModel.setYtenantId("dmrn1j0i");
return groupFallDataModel; return groupFallDataModel;
}).collect(Collectors.toList()); }).collect(Collectors.toList());
......
...@@ -12,10 +12,10 @@ ...@@ -12,10 +12,10 @@
<insert id="addAll"> <insert id="addAll">
INSERT INTO elim INSERT INTO elim
( `year`, `month`, entitycode, entityname, accountcode, icpcode, orivalue,c1,c2,c3,c4,ytenant_id) ( `year`, `month`, entitycode, entityname, accountcode, icpcode,icpname, orivalue,c1,c2,c3,c4,ytenant_id)
VALUES VALUES
<foreach collection="groupFallDataModelList" item="item" index="index" separator=","> <foreach collection="groupFallDataModelList" item="item" index="index" separator=",">
(#{item.year},#{item.month},#{item.entitycode},#{item.entityname},#{item.accountcode},#{item.icpcode},#{item.orivalue}, (#{item.year},#{item.month},#{item.entitycode},#{item.entityname},#{item.accountcode},#{item.icpcode},#{item.icpname},#{item.orivalue},
#{item.c1},#{item.c2},#{item.c3},#{item.c4},#{item.ytenantId}) #{item.c1},#{item.c2},#{item.c3},#{item.c4},#{item.ytenantId})
</foreach> </foreach>
</insert> </insert>
......
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