修改mapper 包名
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 8m15s
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 8m15s
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package org.dromara.sis.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() {
|
||||
// 使用JDK自带的HttpURLConnection作为客户端
|
||||
return new RestTemplate();
|
||||
}
|
||||
}
|
@@ -27,8 +27,8 @@ import java.util.Collection;
|
||||
* @date 2025-06-24
|
||||
*/
|
||||
@Slf4j
|
||||
@RequiredArgsConstructor
|
||||
@Service
|
||||
@RequiredArgsConstructor
|
||||
public class TbPersonLibServiceImpl implements ITbPersonLibService {
|
||||
|
||||
private final TbPersonLibMapper baseMapper;
|
||||
|
Reference in New Issue
Block a user