|
@@ -65,7 +65,7 @@ public class BytedancePlanJobController {
|
|
@ApiParam("用户id") @RequestParam(value = "userId") String userId,
|
|
@ApiParam("用户id") @RequestParam(value = "userId") String userId,
|
|
@ApiParam("账户id") @RequestParam(value = "accountId",required = false) String accountId,
|
|
@ApiParam("账户id") @RequestParam(value = "accountId",required = false) String accountId,
|
|
@ApiParam("是否开启监测链接预警 1-开启 2-不开启") @RequestParam(value = "warningFlag",required = false) String warningFlag,
|
|
@ApiParam("是否开启监测链接预警 1-开启 2-不开启") @RequestParam(value = "warningFlag",required = false) String warningFlag,
|
|
- @RequestParam(value = "pageNum",defaultValue = "1") Integer pageNum,
|
|
|
|
|
|
+ @RequestParam(value = "pageNo",defaultValue = "1") Integer pageNo,
|
|
@RequestParam(value = "pageSize",defaultValue = "10") Integer pageSize) {
|
|
@RequestParam(value = "pageSize",defaultValue = "10") Integer pageSize) {
|
|
//获取用户角色code
|
|
//获取用户角色code
|
|
String roleCode = sysRoleService.getRoleCodeByUserId(userId);
|
|
String roleCode = sysRoleService.getRoleCodeByUserId(userId);
|
|
@@ -77,7 +77,7 @@ public class BytedancePlanJobController {
|
|
//查询所有包含自己的下级
|
|
//查询所有包含自己的下级
|
|
operatorUserIds = userAllocationService.recursiveQuerySubordinate(userId);
|
|
operatorUserIds = userAllocationService.recursiveQuerySubordinate(userId);
|
|
}
|
|
}
|
|
- return monitorBytedanceService.selectAccountActionTrackUrlList(accountId,warningFlag,operatorUserIds,pageNum,pageSize);
|
|
|
|
|
|
+ return monitorBytedanceService.selectAccountActionTrackUrlList(accountId,warningFlag,operatorUserIds,pageNo,pageSize);
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|