feat: 后台管理模块

This commit is contained in:
zlg
2024-07-17 17:37:09 +08:00
parent 6b7aaa0f95
commit c927f41447
55 changed files with 1270 additions and 51 deletions

View File

@@ -0,0 +1,22 @@
package com.schisandra.oss.api;
import com.schisandra.oss.entity.Result;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import java.util.List;
@FeignClient("schisandra-cloud-storage-oss")
public interface SchisandraOssFeignService {
@GetMapping("/oss/ali/returnAll")
Result returnAliAll();
@GetMapping("/oss/minio/returnAll")
Result returnMinioAll();
@GetMapping("/oss/tencent/returnAll")
Result returnTencentAll();
@GetMapping("/oss/qiniu/returnAll")
Result returnQiniuAll();
}