Commit 3a469c0f by chenweisong

更新

parent 742e6d47
...@@ -305,8 +305,12 @@ public class TaskController { ...@@ -305,8 +305,12 @@ public class TaskController {
return "审核通过成功"; return "审核通过成功";
} }
@ApiOperation(value = "查看当前活动进程列表", hidden = true) @ApiOperation(value = "进度列表")
@PostMapping(value = "/task/progress") @ApiImplicitParams({
@ApiImplicitParam(name = "taskId", value = "活动id", paramType = "path", required = true, dataType = "string"),
@ApiImplicitParam(name = "status", value = "状态", paramType = "query", required = true, dataType = "integer", example = "0")
})
@GetMapping(value = "/task/progress")
public Object viewTasksProgress() { public Object viewTasksProgress() {
return ""; return "";
} }
......
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