|
|
@ -476,4 +476,18 @@ public class FhMiniController extends BaseController { |
|
|
public AjaxResult getUserRewardNum(@Validated @RequestBody @ApiParam("检查超标对象") checkUserCanDownloadDto dto){ |
|
|
public AjaxResult getUserRewardNum(@Validated @RequestBody @ApiParam("检查超标对象") checkUserCanDownloadDto dto){ |
|
|
return AjaxResult.success(fhUserService.getUserRewardNum(dto.getUserId(),dto.getPlatform(),dto.getAppType())); |
|
|
return AjaxResult.success(fhUserService.getUserRewardNum(dto.getUserId(),dto.getPlatform(),dto.getAppType())); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value="会员/用户签到获取画意值") |
|
|
|
|
|
@PostMapping(value = "/signGetGold") |
|
|
|
|
|
public AjaxResult signGetGold(@Validated @RequestBody @ApiParam("签到获取画意值对象") GetGoldDto params){ |
|
|
|
|
|
goldLogService.signGetGold(params); |
|
|
|
|
|
return AjaxResult.success(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value="会员/用户看广告获取画意值") |
|
|
|
|
|
@PostMapping(value = "/watchAdGetGold") |
|
|
|
|
|
public AjaxResult watchAdGetGold(@Validated @RequestBody @ApiParam("看广告获取画意值对象") GetGoldDto params){ |
|
|
|
|
|
goldLogService.watchAdGetGold(params); |
|
|
|
|
|
return AjaxResult.success(); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
|