第三方数据同步

master
wj 2 years ago
parent 3648bf21cd
commit 01cb478e4f

@ -35,6 +35,11 @@ public enum BasicExportTypeEnum {
*
*/
USER_DATA("user_data", "用户数据"),
/**
*
*/
THIRD_DATA("third_data", "第三方数据"),
;
@EnumValue
private String key;

@ -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<ThrDeptEntity> 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<ThrInvWarehouseEntity> 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<ThrCorpEntity> 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<ThrProductsEntity> 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");

@ -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<ThrCorpDao, ThrCorpEntity, ThrCorpEntity> {
List<ThrCorpsResponse> 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);
}

@ -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<ThrDeptDao, ThrDeptEntity, ThrDeptEntity> {
List<ThrDeptEntity> filterThrInvWarehouse(FilterThrDeptRequest filterThrDeptRequest);
@ -31,5 +32,5 @@ public interface ThrDeptDao {
ThrDeptEntity selectMaxCode(FilterThrDeptRequest filterThrDeptRequest);
boolean insertOrUpdate(ThrDeptEntity thrDeptEntity);
boolean insertOrUpdateEntity(ThrDeptEntity thrDeptEntity);
}

@ -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<ThrInvWarehouseDao,ThrInvWarehouseEntity,ThrInvWarehouseEntity> {
List<ThrInvWarehouseEntity> filterThrInvWarehouse(FilterThrSubInvWarehouseRequest filterThrSubInvWarehouseRequest);
@ -33,5 +34,5 @@ public interface ThrInvWarehouseDao {
List<ThrInvWarehouseResponse> filterThrInvWarehouseResponse(FilterThrSubInvWarehouseRequest filterThrSubInvWarehouseRequest);
boolean insertOrUpdate(ThrInvWarehouseEntity thrInvWarehouseEntity);
boolean insertOrUpdateEntity(ThrInvWarehouseEntity thrInvWarehouseEntity);
}

@ -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<ThrProductsDao, ThrProductsEntity, ThrProductsEntity> {
List<ThrProductsEntity> filterThrProducts(FilterThrProductsRequest filterThrProductsRequest);
List<ThrProductsEntity> filterThrProducts1(FilterThrProductsRequest filterThrProductsRequest);
List<ThrProductsResponse> filterJoinThrProducts(FilterThrProductsRequest filterThrProductsRequest);
@ -28,9 +30,9 @@ public interface ThrProductsDao {
boolean deleteById(@Param("id") String id);
boolean insertThrProducts(ThrProductsEntity thrProductsEntity);
List<ThrProductsEntity> selectThrProducts(FilterThrProductsRequest filterThrProductsRequest);
int insertOrUpdate(ThrProductsEntity record);
int insertOrUpdateEntity(ThrProductsEntity record);
}

@ -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<ThrInvWarehouseEntity> invWarehouseEntities;
/**
*
*/
private List<ThrProductsEntity> productsEntityList;
/**
*

@ -190,7 +190,7 @@
and basic_third_sys.enabled = 1
</select>
<insert id="insertOrUpdate" keyColumn="id" keyProperty="id" parameterType="com.glxp.api.entity.thrsys.ThrSystemDetailEntity"
<insert id="insertOrUpdateEntity" keyColumn="id" keyProperty="id" parameterType="com.glxp.api.entity.thrsys.ThrSystemDetailEntity"
useGeneratedKeys="true">
insert into thr_corp
<trim prefix="(" suffix=")" suffixOverrides=",">

@ -210,7 +210,7 @@
</foreach>
</insert>
<insert id="insertOrUpdate" keyColumn="id" keyProperty="id" parameterType="com.glxp.api.entity.thrsys.ThrDeptEntity"
<insert id="insertOrUpdateEntity" keyColumn="id" keyProperty="id" parameterType="com.glxp.api.entity.thrsys.ThrDeptEntity"
useGeneratedKeys="true">
insert into thr_dept
<trim prefix="(" suffix=")" suffixOverrides=",">

@ -122,7 +122,7 @@
WHERE id = #{id}
</update>
<insert id="insertOrUpdate" parameterType="com.glxp.api.entity.thrsys.ThrInvWarehouseEntity">
<insert id="insertOrUpdateEntity" parameterType="com.glxp.api.entity.thrsys.ThrInvWarehouseEntity">
insert into thr_inv_warehouse
(id, code, `name`, parentId, remark, thirdSysFk,updateTime)
values

@ -228,7 +228,7 @@
ORDER BY updateTime DESC
</select>
<insert id="insertOrUpdate" keyColumn="id" keyProperty="id"
<insert id="insertOrUpdateEntity" keyColumn="id" keyProperty="id"
parameterType="com.glxp.api.entity.thrsys.ThrProductsEntity" useGeneratedKeys="true">
<!--@mbg.generated-->
insert into thr_products

Loading…
Cancel
Save