欧阳劲驰 2 semanas atrás
pai
commit
1bc5303b0e

+ 1 - 1
custom-gateway-zydma/src/main/java/com/shkpr/service/customgateway/zydma/components/InfoSynchronizer.java

@@ -11,7 +11,7 @@ import com.shkpr.service.customgateway.zydma.constants.MiddlePlatformMetadata;
 import com.shkpr.service.customgateway.zydma.domain.MiddlePlatformPage;
 import com.shkpr.service.customgateway.zydma.domain.MiddlePlatformResult;
 import com.shkpr.service.customgateway.zydma.domain.MiddlePlatformUser;
-import com.shkpr.service.customgateway.zydma.domain.PersonnelInfo;
+import com.shkpr.service.customgateway.zydma.domain.po.PersonnelInfo;
 import com.shkpr.service.customgateway.zydma.service.PersonnelInfoService;
 import lombok.extern.slf4j.Slf4j;
 import org.apache.http.message.BasicHeader;

+ 1 - 0
custom-gateway-zydma/src/main/java/com/shkpr/service/customgateway/zydma/domain/MiddlePlatformUser.java

@@ -1,6 +1,7 @@
 package com.shkpr.service.customgateway.zydma.domain;
 
 import com.shkpr.service.customgateway.zydma.constants.MiddlePlatformMetadata;
+import com.shkpr.service.customgateway.zydma.domain.po.PersonnelInfo;
 import lombok.Data;
 
 import java.util.Objects;

+ 1 - 1
custom-gateway-zydma/src/main/java/com/shkpr/service/customgateway/zydma/domain/PersonnelInfo.java

@@ -1,4 +1,4 @@
-package com.shkpr.service.customgateway.zydma.domain;
+package com.shkpr.service.customgateway.zydma.domain.po;
 
 import lombok.Data;
 

+ 1 - 1
custom-gateway-zydma/src/main/java/com/shkpr/service/customgateway/zydma/mapper/primary/PersonnelInfoMapper.java

@@ -1,6 +1,6 @@
 package com.shkpr.service.customgateway.zydma.mapper.primary;
 
-import com.shkpr.service.customgateway.zydma.domain.PersonnelInfo;
+import com.shkpr.service.customgateway.zydma.domain.po.PersonnelInfo;
 import org.apache.ibatis.annotations.Mapper;
 import org.apache.ibatis.annotations.Param;
 

+ 1 - 1
custom-gateway-zydma/src/main/java/com/shkpr/service/customgateway/zydma/service/PersonnelInfoService.java

@@ -1,6 +1,6 @@
 package com.shkpr.service.customgateway.zydma.service;
 
-import com.shkpr.service.customgateway.zydma.domain.PersonnelInfo;
+import com.shkpr.service.customgateway.zydma.domain.po.PersonnelInfo;
 
 import java.util.List;
 

+ 1 - 1
custom-gateway-zydma/src/main/java/com/shkpr/service/customgateway/zydma/service/impl/PersonnelInfoServiceImpl.java

@@ -4,7 +4,7 @@ import com.global.base.log.LogLevelFlag;
 import com.global.base.log.LogPrintMgr;
 import com.shkpr.service.customgateway.core.constants.DataSourceNames;
 import com.shkpr.service.customgateway.core.constants.LogFlagBusiType;
-import com.shkpr.service.customgateway.zydma.domain.PersonnelInfo;
+import com.shkpr.service.customgateway.zydma.domain.po.PersonnelInfo;
 import com.shkpr.service.customgateway.zydma.mapper.primary.PersonnelInfoMapper;
 import com.shkpr.service.customgateway.zydma.service.PersonnelInfoService;
 import org.apache.commons.collections4.CollectionUtils;