增加forest

master
冯凯 2023-10-28 20:28:04 +08:00
parent 1b94640aeb
commit 4221f0eaa3
4 changed files with 4 additions and 40 deletions

View File

@ -21,7 +21,7 @@
<dependency>
<groupId>com.health</groupId>
<artifactId>health-common-core</artifactId>
<version>3.6.7</version>
<version>3.6.8</version>
</dependency>

View File

@ -112,7 +112,7 @@
<dependency>
<groupId>com.health</groupId>
<artifactId>health-common-core</artifactId>
<version>3.6.7</version>
<version>3.6.8</version>
</dependency>
<dependency>
<groupId>com.dtflys.forest</groupId>

View File

@ -1,35 +0,0 @@
package com.health.system.server.config;
import com.health.common.core.domain.Configure;
import com.health.common.core.utils.userSelf.ForestClientInterface;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.util.HashMap;
import java.util.Map;
/**
* @author
* @version 1.0
* @description:
* @date 2023/10/28 19:40
*/
@Configuration
public class AppConfig implements ForestClientInterface{
@Override
public Map helloForestFace(String s) {
return helloForestFace(s);
}
@Override
public Map helloForestBack(String s, Configure configure) {
return helloForestBack(s,configure);
}
@Override
public Map helloForestBank(String s) {
return helloForestBank(s);
}
}

View File

@ -2,17 +2,16 @@ package com.health.system.server.controller;
import com.health.common.core.domain.Configure;
import com.health.common.core.domain.Result;
import com.health.common.core.enums.IdCardConfigureType;
import com.health.common.core.utils.userSelf.ForestClientInterface;
import com.health.common.security.utils.SecurityUtils;
import com.health.system.common.domain.IdCard;
import com.health.system.common.domain.util.IdCardConfigureType;
import com.health.system.server.service.SysIdCardService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import com.health.system.server.config.ForestClientInterface;
import javax.annotation.Resource;
import java.io.IOException;
import java.rmi.ServerException;