|  | @@ -23,21 +23,21 @@ public class AccountAgentDayController {
 | 
	
		
			
				|  |  |      private IAccountAgentDayService accountAgentDayService;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiOperation(value = "推广每日数据")
 | 
	
		
			
				|  |  | -//    @PreAuthorize(permissionKey = "gameData:accountAgent:day")
 | 
	
		
			
				|  |  | +    @PreAuthorize(permissionKey = "gameData:accountAgent: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:accountAgent: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:accountAgent:total")
 | 
	
		
			
				|  |  |      @PostMapping("/total")
 | 
	
		
			
				|  |  |      public ResultVO<Page<GamePromoteTotalVO>> accountAgentTotal(@RequestBody GamePromoteTotalDTO dto) {
 | 
	
		
			
				|  |  |          return ResultVO.ok(accountAgentDayService.accountAgentTotal(dto));
 |