|
@@ -1,8 +1,11 @@
|
|
|
package com.idiot.operationbackend.controller;
|
|
|
|
|
|
+import com.idiot.operationbackend.support.JsonResult;
|
|
|
import io.swagger.annotations.Api;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.http.ResponseEntity;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 素材
|
|
@@ -16,4 +19,13 @@ public class MaterialController {
|
|
|
|
|
|
|
|
|
|
|
|
+ @GetMapping("/{accountId}")
|
|
|
+ @ApiOperation(value = "查询公众号素材")
|
|
|
+ public ResponseEntity<JsonResult<Object>> materialList (@RequestHeader String token,
|
|
|
+ @PathVariable String accountId,
|
|
|
+ @RequestParam String type){
|
|
|
+ return null;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|