| | |
| | | import com.iailab.module.infra.convert.db.DataSourceConfigConvert; |
| | | import com.iailab.module.infra.service.db.DataSourceConfigService; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.validation.annotation.Validated; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | |
| | | * |
| | | * @author 芋道源码 |
| | | */ |
| | | @Service |
| | | @RestController // 提供 RESTful API 接口,给 Feign 调用 |
| | | @Validated |
| | | public class DataSourceConfigServiceApiImpl implements DataSourceConfigServiceApi { |
| | | |
| | | @Resource |