|
|
@ -229,11 +229,11 @@ public class PointController {
|
|
|
|
@ApiOperation(value = "2.5.分享期刊(APP)", notes = "仅限app用户调用")
|
|
|
|
@ApiOperation(value = "2.5.分享期刊(APP)", notes = "仅限app用户调用")
|
|
|
|
@PostMapping("/log/share/journal")
|
|
|
|
@PostMapping("/log/share/journal")
|
|
|
|
@ApiImplicitParams({
|
|
|
|
@ApiImplicitParams({
|
|
|
|
@ApiImplicitParam(name = "Authorization", value = "token", required = true, dataType = "String", paramType = "header"),
|
|
|
|
@ApiImplicitParam(name = "Authorization", value = "token", dataType = "String", paramType = "header"),
|
|
|
|
@ApiImplicitParam(name = "journalId", value = "期刊id", required = true, dataType = "String", paramType = "query")
|
|
|
|
@ApiImplicitParam(name = "journalId", value = "期刊id", required = true, dataType = "String", paramType = "query")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
public Result<Void> addLogShareJournal(
|
|
|
|
public Result<Void> addLogShareJournal(
|
|
|
|
@RequestHeader(value = "Authorization", required = true) String authorization,
|
|
|
|
@RequestHeader(value = "Authorization") String authorization,
|
|
|
|
@RequestParam String journalId) {
|
|
|
|
@RequestParam String journalId) {
|
|
|
|
userPointLogService.shareJournal(authorization);
|
|
|
|
userPointLogService.shareJournal(authorization);
|
|
|
|
return Result.success();
|
|
|
|
return Result.success();
|
|
|
|