|
|
@@ -13,11 +13,12 @@ import org.springframework.validation.annotation.Validated;
|
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
|
import io.swagger.v3.oas.annotations.Parameter;
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+import io.swagger.v3.oas.annotations.responses.ApiResponse;
|
|
|
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
-@Tag(name = "1.文件管理-文件夹", description = "文件夹管理相关接口")
|
|
|
+@Tag(name = "01.01 文件管理-文件夹", description = "文件夹管理相关接口")
|
|
|
@RestController
|
|
|
@Validated
|
|
|
@RequestMapping("/efinder/folder")
|
|
|
@@ -29,6 +30,7 @@ public class DocFolderController extends BaseController {
|
|
|
* 查询文件夹列表
|
|
|
*/
|
|
|
@Operation(summary = "查询文件夹列表")
|
|
|
+ @ApiResponse(responseCode = "200", description = "查询成功")
|
|
|
@GetMapping("/list")
|
|
|
public TableDataInfo list(@Parameter(description = "文件夹查询条件") DocFolder docFolder) {
|
|
|
startPage();
|