|
@@ -0,0 +1,25 @@
|
|
|
+package com.backendsys.modules.app.crt.controller;
|
|
|
+
|
|
|
+import com.backendsys.modules.common.aspect.AppUserLogin;
|
|
|
+import com.backendsys.modules.common.utils.Result;
|
|
|
+import com.backendsys.modules.crt.entity.CrtDramaProject;
|
|
|
+import io.swagger.v3.oas.annotations.Operation;
|
|
|
+import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.validation.annotation.Validated;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@Validated
|
|
|
+@RestController
|
|
|
+@Tag(name = "APP-智能应用中心-短剧创作")
|
|
|
+public class AppCrtDramaProjectController {
|
|
|
+
|
|
|
+ @AppUserLogin
|
|
|
+ @Operation(summary = "项目列表")
|
|
|
+ @GetMapping("/api/app/crt/drama/getDramaProjectAllList")
|
|
|
+ public Result getDramaProjectAllList() {
|
|
|
+ return Result.success();
|
|
|
+ }
|
|
|
+
|
|
|
+}
|