diff --git a/src/main/java/com/glxp/api/constant/BasicExportTypeEnum.java b/src/main/java/com/glxp/api/constant/BasicExportTypeEnum.java index 1e4651b8..4b13a5b3 100644 --- a/src/main/java/com/glxp/api/constant/BasicExportTypeEnum.java +++ b/src/main/java/com/glxp/api/constant/BasicExportTypeEnum.java @@ -35,6 +35,11 @@ public enum BasicExportTypeEnum { * 用户数据 */ USER_DATA("user_data", "用户数据"), + + /** + * 第三方数据 + */ + THIRD_DATA("third_data", "第三方数据"), ; @EnumValue private String key; diff --git a/src/main/java/com/glxp/api/controller/sync/SpsSyncDownloadController.java b/src/main/java/com/glxp/api/controller/sync/SpsSyncDownloadController.java index d31bbc70..cfd83a91 100644 --- a/src/main/java/com/glxp/api/controller/sync/SpsSyncDownloadController.java +++ b/src/main/java/com/glxp/api/controller/sync/SpsSyncDownloadController.java @@ -340,6 +340,9 @@ public class SpsSyncDownloadController { case USER_DATA: saveUploadUserData(JSONUtil.toBean(obj, SpsSyncDataResponse.class)); break; + case THIRD_DATA: + saveUploadThrData(JSONUtil.toBean(obj, SpsSyncThrDataResponse.class)); + break; case COUNTRY_DI_DATA: } String taskId = obj.getStr("taskId"); @@ -362,6 +365,26 @@ public class SpsSyncDownloadController { } + private final ThrDeptDao thrDeptDao; + private final ThrInvWarehouseDao thrInvWarehouseDao; + private final ThrProductsDao thrProductsDao; + private final ThrCorpDao thrCorpDao; + private void saveUploadThrData(SpsSyncThrDataResponse bean) { + + if (CollectionUtil.isNotEmpty(bean.getDeptEntities())) { + thrDeptDao.insertOrUpdateBatch(bean.getDeptEntities()); + } + if (CollectionUtil.isNotEmpty(bean.getInvWarehouseEntities())) { + thrInvWarehouseDao.insertOrUpdateBatch(bean.getInvWarehouseEntities()); + } + if (CollectionUtil.isNotEmpty(bean.getProductsEntityList())) { + thrProductsDao.insertOrUpdateBatch(bean.getProductsEntityList()); + } + if (CollectionUtil.isNotEmpty(bean.getCorpEntities())) { + thrCorpDao.insertOrUpdateBatch(bean.getCorpEntities()); + } + } + private void saveUploadUserData(SpsSyncDataResponse bean) { if (CollectionUtil.isNotEmpty(bean.getAuthAdminList())) { @@ -843,7 +866,7 @@ public class SpsSyncDownloadController { if (CollUtil.isNotEmpty(spsSyncThrDataResponse.getDeptEntities())) { List deptEntities = spsSyncThrDataResponse.getDeptEntities(); ThrDeptDao mapper = sqlSession.getMapper(ThrDeptDao.class); - deptEntities.forEach(mapper::insertOrUpdate); + deptEntities.forEach(mapper::insertOrUpdateEntity); } sqlSession.commit(); remark.append("第三方部门信息:").append(spsSyncThrDataResponse.getDeptEntities().size()).append("条\n"); @@ -852,7 +875,7 @@ public class SpsSyncDownloadController { if (CollUtil.isNotEmpty(spsSyncThrDataResponse.getInvWarehouseEntities())) { List invWarehouseEntities = spsSyncThrDataResponse.getInvWarehouseEntities(); ThrInvWarehouseDao mapper = sqlSession.getMapper(ThrInvWarehouseDao.class); - invWarehouseEntities.forEach(mapper::insertOrUpdate); + invWarehouseEntities.forEach(mapper::insertOrUpdateEntity); } sqlSession.commit(); remark.append("第三方仓库信息:").append(spsSyncThrDataResponse.getInvWarehouseEntities().size()).append("条\n"); @@ -861,7 +884,7 @@ public class SpsSyncDownloadController { if (CollUtil.isNotEmpty(spsSyncThrDataResponse.getCorpEntities())) { List corpEntities = spsSyncThrDataResponse.getCorpEntities(); ThrCorpDao mapper = sqlSession.getMapper(ThrCorpDao.class); - corpEntities.forEach(mapper::insertOrUpdate); + corpEntities.forEach(mapper::insertOrUpdateEntity); } sqlSession.commit(); remark.append("第三方往来单位信息:").append(spsSyncThrDataResponse.getCorpEntities().size()).append("条\n"); @@ -1019,7 +1042,7 @@ public class SpsSyncDownloadController { if (CollUtil.isNotEmpty(spsSyncThrProductsResponse.getProductsEntities())) { List productsEntities = spsSyncThrProductsResponse.getProductsEntities(); ThrProductsDao mapper = sqlSession.getMapper(ThrProductsDao.class); - productsEntities.forEach(mapper::insertOrUpdate); + productsEntities.forEach(mapper::insertOrUpdateEntity); } sqlSession.commit(); remark.append("第三方产品信息:").append(spsSyncThrProductsResponse.getProductsEntities().size()).append("条\n"); diff --git a/src/main/java/com/glxp/api/dao/thrsys/ThrCorpDao.java b/src/main/java/com/glxp/api/dao/thrsys/ThrCorpDao.java index 0f7538dd..1eaadfa3 100644 --- a/src/main/java/com/glxp/api/dao/thrsys/ThrCorpDao.java +++ b/src/main/java/com/glxp/api/dao/thrsys/ThrCorpDao.java @@ -1,6 +1,7 @@ package com.glxp.api.dao.thrsys; +import com.glxp.api.dao.BaseMapperPlus; import com.glxp.api.entity.thrsys.ThrCorpEntity; import com.glxp.api.entity.thrsys.ThrSystemDetailEntity; import com.glxp.api.req.thrsys.FilterThrCorpRequest; @@ -13,7 +14,7 @@ import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper -public interface ThrCorpDao { +public interface ThrCorpDao extends BaseMapperPlus { List filterThrCorps(FilterThrCorpRequest filterThrCorpRequest); @@ -36,5 +37,5 @@ public interface ThrCorpDao { ThrSystemDetailEntity selectByKey(@Param("key") String key, @Param("thirdSys") String thirdSys); - boolean insertOrUpdate(ThrCorpEntity thrCorpEntity); + boolean insertOrUpdateEntity(ThrCorpEntity thrCorpEntity); } diff --git a/src/main/java/com/glxp/api/dao/thrsys/ThrDeptDao.java b/src/main/java/com/glxp/api/dao/thrsys/ThrDeptDao.java index e5108874..47838be3 100644 --- a/src/main/java/com/glxp/api/dao/thrsys/ThrDeptDao.java +++ b/src/main/java/com/glxp/api/dao/thrsys/ThrDeptDao.java @@ -1,5 +1,6 @@ package com.glxp.api.dao.thrsys; +import com.glxp.api.dao.BaseMapperPlus; import com.glxp.api.entity.thrsys.ThrDeptEntity; import com.glxp.api.req.thrsys.FilterThrDeptRequest; import org.apache.ibatis.annotations.Mapper; @@ -8,7 +9,7 @@ import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper -public interface ThrDeptDao { +public interface ThrDeptDao extends BaseMapperPlus { List filterThrInvWarehouse(FilterThrDeptRequest filterThrDeptRequest); @@ -31,5 +32,5 @@ public interface ThrDeptDao { ThrDeptEntity selectMaxCode(FilterThrDeptRequest filterThrDeptRequest); - boolean insertOrUpdate(ThrDeptEntity thrDeptEntity); + boolean insertOrUpdateEntity(ThrDeptEntity thrDeptEntity); } diff --git a/src/main/java/com/glxp/api/dao/thrsys/ThrInvWarehouseDao.java b/src/main/java/com/glxp/api/dao/thrsys/ThrInvWarehouseDao.java index 556d4f36..a33f4af6 100644 --- a/src/main/java/com/glxp/api/dao/thrsys/ThrInvWarehouseDao.java +++ b/src/main/java/com/glxp/api/dao/thrsys/ThrInvWarehouseDao.java @@ -1,5 +1,6 @@ package com.glxp.api.dao.thrsys; +import com.glxp.api.dao.BaseMapperPlus; import com.glxp.api.entity.thrsys.ThrInvWarehouseEntity; import com.glxp.api.req.thrsys.FilterThrSubInvWarehouseRequest; import com.glxp.api.res.thrsys.ThrInvWarehouseResponse; @@ -9,7 +10,7 @@ import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper -public interface ThrInvWarehouseDao { +public interface ThrInvWarehouseDao extends BaseMapperPlus { List filterThrInvWarehouse(FilterThrSubInvWarehouseRequest filterThrSubInvWarehouseRequest); @@ -33,5 +34,5 @@ public interface ThrInvWarehouseDao { List filterThrInvWarehouseResponse(FilterThrSubInvWarehouseRequest filterThrSubInvWarehouseRequest); - boolean insertOrUpdate(ThrInvWarehouseEntity thrInvWarehouseEntity); + boolean insertOrUpdateEntity(ThrInvWarehouseEntity thrInvWarehouseEntity); } diff --git a/src/main/java/com/glxp/api/dao/thrsys/ThrProductsDao.java b/src/main/java/com/glxp/api/dao/thrsys/ThrProductsDao.java index d8b7069b..de7235d6 100644 --- a/src/main/java/com/glxp/api/dao/thrsys/ThrProductsDao.java +++ b/src/main/java/com/glxp/api/dao/thrsys/ThrProductsDao.java @@ -1,5 +1,6 @@ package com.glxp.api.dao.thrsys; +import com.glxp.api.dao.BaseMapperPlus; import com.glxp.api.entity.thrsys.ThrProductsEntity; import com.glxp.api.req.thrsys.FilterThrProductsRequest; import com.glxp.api.res.thrsys.ThrProductsResponse; @@ -15,10 +16,11 @@ import java.util.List; * @author ${author} * @since 2023-01-10 */ -public interface ThrProductsDao { +public interface ThrProductsDao extends BaseMapperPlus { List filterThrProducts(FilterThrProductsRequest filterThrProductsRequest); + List filterThrProducts1(FilterThrProductsRequest filterThrProductsRequest); List filterJoinThrProducts(FilterThrProductsRequest filterThrProductsRequest); @@ -28,9 +30,9 @@ public interface ThrProductsDao { boolean deleteById(@Param("id") String id); boolean insertThrProducts(ThrProductsEntity thrProductsEntity); - + List selectThrProducts(FilterThrProductsRequest filterThrProductsRequest); - int insertOrUpdate(ThrProductsEntity record); + int insertOrUpdateEntity(ThrProductsEntity record); } diff --git a/src/main/java/com/glxp/api/res/sync/SpsSyncThrDataResponse.java b/src/main/java/com/glxp/api/res/sync/SpsSyncThrDataResponse.java index 7c9abd82..f4676781 100644 --- a/src/main/java/com/glxp/api/res/sync/SpsSyncThrDataResponse.java +++ b/src/main/java/com/glxp/api/res/sync/SpsSyncThrDataResponse.java @@ -3,6 +3,7 @@ package com.glxp.api.res.sync; import com.glxp.api.entity.thrsys.ThrCorpEntity; import com.glxp.api.entity.thrsys.ThrDeptEntity; import com.glxp.api.entity.thrsys.ThrInvWarehouseEntity; +import com.glxp.api.entity.thrsys.ThrProductsEntity; import lombok.Data; import java.util.List; @@ -23,6 +24,10 @@ public class SpsSyncThrDataResponse extends BaseSyncResponse { */ private List invWarehouseEntities; + /** + * 第三方产品信息 + */ + private List productsEntityList; /** * 往来单位信息 diff --git a/src/main/resources/mybatis/mapper/thrsys/ThrCorpDao.xml b/src/main/resources/mybatis/mapper/thrsys/ThrCorpDao.xml index f9538d00..5b1ae7c4 100644 --- a/src/main/resources/mybatis/mapper/thrsys/ThrCorpDao.xml +++ b/src/main/resources/mybatis/mapper/thrsys/ThrCorpDao.xml @@ -190,7 +190,7 @@ and basic_third_sys.enabled = 1 - insert into thr_corp diff --git a/src/main/resources/mybatis/mapper/thrsys/ThrDeptDao.xml b/src/main/resources/mybatis/mapper/thrsys/ThrDeptDao.xml index 312a344e..fd787d30 100644 --- a/src/main/resources/mybatis/mapper/thrsys/ThrDeptDao.xml +++ b/src/main/resources/mybatis/mapper/thrsys/ThrDeptDao.xml @@ -210,7 +210,7 @@ - insert into thr_dept diff --git a/src/main/resources/mybatis/mapper/thrsys/ThrInvWarehouseDao.xml b/src/main/resources/mybatis/mapper/thrsys/ThrInvWarehouseDao.xml index c1e02af5..a525ce38 100644 --- a/src/main/resources/mybatis/mapper/thrsys/ThrInvWarehouseDao.xml +++ b/src/main/resources/mybatis/mapper/thrsys/ThrInvWarehouseDao.xml @@ -122,7 +122,7 @@ WHERE id = #{id} - + insert into thr_inv_warehouse (id, code, `name`, parentId, remark, thirdSysFk,updateTime) values diff --git a/src/main/resources/mybatis/mapper/thrsys/ThrProductsDao.xml b/src/main/resources/mybatis/mapper/thrsys/ThrProductsDao.xml index 94c426c5..2d4dd1e2 100644 --- a/src/main/resources/mybatis/mapper/thrsys/ThrProductsDao.xml +++ b/src/main/resources/mybatis/mapper/thrsys/ThrProductsDao.xml @@ -228,7 +228,7 @@ ORDER BY updateTime DESC - insert into thr_products