Commit 3cf5519e by chenweisong

更新

parent 570c19af
...@@ -274,8 +274,12 @@ public class TaskController { ...@@ -274,8 +274,12 @@ public class TaskController {
@ApiOperation(value = "审核通过活动") @ApiOperation(value = "审核通过活动")
@ApiImplicitParams({
@ApiImplicitParam(name = "taskId", value = "活动id", paramType = "query", required = true, dataType = "long")
})
@PostMapping(value = "/pass") @PostMapping(value = "/pass")
public ApiResponse passTask(@RequestParam Long taskId) { public ApiResponse passTask(
long taskId) {
Activity activity = activityService.get(taskId); Activity activity = activityService.get(taskId);
// 完结活动, 流程跑完 // 完结活动, 流程跑完
// User judge = userService.getAudit(); // User judge = userService.getAudit();
......
...@@ -30,8 +30,8 @@ spring: ...@@ -30,8 +30,8 @@ spring:
max-file-size: 20Mb max-file-size: 20Mb
max-request-size: 100Mb max-request-size: 100Mb
redis: redis:
# host: 192.168.0.192 host: 192.168.0.192
host: 127.0.0.1 # host: 127.0.0.1
port: 6379 port: 6379
session: session:
store-type: redis store-type: redis
......
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