|
|
@@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.*;
|
|
|
* @Date 2019-04-19
|
|
|
*/
|
|
|
@RestController
|
|
|
-@RequestMapping("/dashBoard/menu")
|
|
|
+@RequestMapping("/dashboard/menu")
|
|
|
@Api(description = "看板目录相关接口")
|
|
|
public class DashboardMenuController {
|
|
|
|
|
|
@@ -62,7 +62,7 @@ public class DashboardMenuController {
|
|
|
return new RepEntity(RepCode.success);
|
|
|
}
|
|
|
|
|
|
- @GetMapping("/list/dashBoard/{menuId}")
|
|
|
+ @GetMapping("/list/{menuId}")
|
|
|
@CheckToken
|
|
|
@ApiOperation(value = "获得目录下的所有报表", notes = "通过MenuId获得目录下的所有报表", response = RepEntity.class)
|
|
|
public RepEntity getDashBoardByMenuId(@RequestHeader String token, @PathVariable("menuId") int menuId){
|