|
|
@ -130,21 +130,35 @@ public class PointController {
|
|
|
|
return Result.success(taskPointService.getTaskPointList(page, size));
|
|
|
|
return Result.success(taskPointService.getTaskPointList(page, size));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "2.1. 用户根据任务获取积分", notes = "仅限app用户调用")
|
|
|
|
@ApiOperation(value = "2.1. 用户根据新手任务获取积分", notes = "仅限app用户调用")
|
|
|
|
@PostMapping("/log/earn/task")
|
|
|
|
@PostMapping("/log/earn/task/new")
|
|
|
|
@GlobalInterceptor(checkAppUserLogin = true)
|
|
|
|
@GlobalInterceptor(checkAppUserLogin = true)
|
|
|
|
@ApiImplicitParams({
|
|
|
|
@ApiImplicitParams({
|
|
|
|
@ApiImplicitParam(name = "Authorization", value = "token", required = true, dataType = "String", paramType = "header"),
|
|
|
|
@ApiImplicitParam(name = "Authorization", value = "token", required = true, dataType = "String", paramType = "header"),
|
|
|
|
@ApiImplicitParam(name = "taskPointId", value = "任务积分配置id", required = true, dataType = "String", paramType = "body")
|
|
|
|
@ApiImplicitParam(name = "taskPointId", value = "任务积分配置id", required = true, dataType = "String", paramType = "body")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
public Result<Void> addLog(
|
|
|
|
public Result<Void> addLogNew(
|
|
|
|
@RequestHeader(value = "Authorization", required = true) String authorization,
|
|
|
|
@RequestHeader(value = "Authorization", required = true) String authorization,
|
|
|
|
@RequestBody String taskPointId) {
|
|
|
|
@RequestBody String taskPointId) {
|
|
|
|
userPointLogService.addByTask(taskPointId, authorization);
|
|
|
|
userPointLogService.addByTaskNew(taskPointId, authorization);
|
|
|
|
return Result.success();
|
|
|
|
return Result.success();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "2.2.用户积分日志列表", notes = "用户积分日志列表")
|
|
|
|
@ApiOperation(value = "2.2. 用户根据新手任务获取积分", notes = "仅限app用户调用")
|
|
|
|
|
|
|
|
@PostMapping("/log/earn/task/daily")
|
|
|
|
|
|
|
|
@GlobalInterceptor(checkAppUserLogin = true)
|
|
|
|
|
|
|
|
@ApiImplicitParams({
|
|
|
|
|
|
|
|
@ApiImplicitParam(name = "Authorization", value = "token", required = true, dataType = "String", paramType = "header"),
|
|
|
|
|
|
|
|
@ApiImplicitParam(name = "taskPointId", value = "任务积分配置id", required = true, dataType = "String", paramType = "body")
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
public Result<Void> addLogDaily(
|
|
|
|
|
|
|
|
@RequestHeader(value = "Authorization", required = true) String authorization,
|
|
|
|
|
|
|
|
@RequestBody String taskPointId) {
|
|
|
|
|
|
|
|
userPointLogService.addByTaskDaily(taskPointId, authorization);
|
|
|
|
|
|
|
|
return Result.success();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "2.3.用户积分日志列表", notes = "用户积分日志列表")
|
|
|
|
@PostMapping("/log/list/{page}/{size}")
|
|
|
|
@PostMapping("/log/list/{page}/{size}")
|
|
|
|
@GlobalInterceptor(checkAppUserLogin = true)
|
|
|
|
@GlobalInterceptor(checkAppUserLogin = true)
|
|
|
|
public Result<PageResult<UserPointLog>> getUserPointLogList(
|
|
|
|
public Result<PageResult<UserPointLog>> getUserPointLogList(
|
|
|
|