Commit 2631856f authored by neo's avatar neo

[bugfix] use id instead of project id getProejctStatus

parent 145f7ae4
...@@ -72,8 +72,8 @@ public class ProjectController { ...@@ -72,8 +72,8 @@ public class ProjectController {
@ApiOperation(value = "getProjectAllStatus", notes = "get project all status") @ApiOperation(value = "getProjectAllStatus", notes = "get project all status")
@RequestMapping(value = "getProjectAllStatus/{id}", method = RequestMethod.GET) @RequestMapping(value = "getProjectAllStatus/{id}", method = RequestMethod.GET)
public @ResponseBody public @ResponseBody
Map<Integer, Integer> getProjectAllStatus(@PathVariable String projectId) { Map<Integer, Integer> getProjectAllStatus(@PathVariable String id) {
return projectService.getProjectAllStatus(projectId); return projectService.getProjectAllStatus(id);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment