Commit 235ee9b5 by chenweisong

更新

parent d7c3dc49
......@@ -258,7 +258,7 @@ public class TaskController {
@ApiOperation(value = "审核通过活动")
@ApiImplicitParams({
@ApiImplicitParam(name = "taskId", value = "任务id", paramType = "path", required = true, dataType = "string"),
@ApiImplicitParam(name = "status", value = "审核状态", paramType = "path", required = true, dataType = "integer", example = "0")
@ApiImplicitParam(name = "status", value = "审核状态 1 通过 0 驳回", paramType = "path", required = true, dataType = "integer", example = "0")
})
@PostMapping(value = "/task/pass/{taskId}/{status}")
public Object passTask(@PathVariable String taskId, @PathVariable int status) {
......@@ -304,7 +304,7 @@ public class TaskController {
@ApiOperation(value = "负责人确认活动通过")
@ApiImplicitParams({
@ApiImplicitParam(name = "taskId", value = "活动id", paramType = "path", required = true, dataType = "string"),
@ApiImplicitParam(name = "status", value = "审核状态", paramType = "path", required = true, dataType = "integer", example = "0")
@ApiImplicitParam(name = "status", value = "审核状态 1 通过 0 不通过", paramType = "path", required = true, dataType = "integer", example = "0")
})
@PostMapping(value = "/task/confirm/{taskId}/{status}")
public Object confirmTask(@PathVariable String taskId, @PathVariable int status) {
......
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