汇率计算合同金额

This commit is contained in:
2025-06-21 15:09:38 +08:00
parent 7a1128f316
commit d16db4f464
9 changed files with 301 additions and 53 deletions

View File

@@ -0,0 +1,14 @@
package com.ruoyi.framework.config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
@Configuration
public class RestTemplateConfig {
@Bean
public RestTemplate restTemplate() {
return new RestTemplate();
}
}