shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
    }
}