package com.iplatform.base.config;
|
|
import com.iplatform.base.ThirdPartyManager;
|
import com.iplatform.core.PlatformConfiguration;
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
|
/**
|
* 第三方对接相关配置。
|
* @author 时克英
|
* @date 2023-07-03
|
*/
|
@Configuration
|
public class ThirdPartyConfig extends PlatformConfiguration {
|
|
/**
|
* 第三方对接管理器配置。
|
* @return
|
* @date 2023-07-03
|
*/
|
@Bean
|
public ThirdPartyManager thirdPartyManager(){
|
ThirdPartyManager thirdPartyManager = new ThirdPartyManager();
|
return thirdPartyManager;
|
}
|
}
|