|
@@ -32,28 +32,28 @@ public class AccountAgentDayController {
|
|
|
private IAccountAgentDayService accountAgentDayService;
|
|
|
|
|
|
@ApiOperation(value = "推广每日数据")
|
|
|
-// @PreAuthorize(permissionKey = "gameData:accountAgent:day")
|
|
|
+ @PreAuthorize(permissionKey = "gameData:promote:day")
|
|
|
@PostMapping("/day")
|
|
|
public ResultVO<Page<GamePromoteDayVO>> accountAgentDay(@RequestBody GamePromoteDayDTO dto) {
|
|
|
return ResultVO.ok(accountAgentDayService.accountAgentDay(dto));
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "推广每日数据总计")
|
|
|
-// @PreAuthorize(permissionKey = "gameData:accountAgent:dayTotal")
|
|
|
+ @PreAuthorize(permissionKey = "gameData:promote:dayTotal")
|
|
|
@PostMapping("/day/total")
|
|
|
public ResultVO<GamePromoteDayTotalVO> accountAgentDayTotal(@RequestBody GamePromoteDayTotalDTO dto) {
|
|
|
return ResultVO.ok(accountAgentDayService.accountAgentDayTotal(dto));
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "推广总数据")
|
|
|
-// @PreAuthorize(permissionKey = "gameData:accountAgent:total")
|
|
|
+ @PreAuthorize(permissionKey = "gameData:promote:total")
|
|
|
@PostMapping("/total")
|
|
|
public ResultVO<Page<GamePromoteTotalVO>> accountAgentTotal(@RequestBody GamePromoteTotalDTO dto) {
|
|
|
return ResultVO.ok(accountAgentDayService.accountAgentTotal(dto));
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "推广渠道每日复充数据")
|
|
|
- @PreAuthorize(permissionKey = "gameData:accountAgent:again")
|
|
|
+ @PreAuthorize(permissionKey = "gameData:promote:again")
|
|
|
@PostMapping("/again")
|
|
|
public ResultVO<Map<LocalDate, List<AgentDayAgainVO>>> accountAgentDayAgain(@RequestBody AgentDayAgainDTO dto) throws Exception {
|
|
|
return ResultVO.ok(accountAgentDayService.accountAgentDayAgain(dto));
|