| | |
| | | } |
| | | |
| | | public List<C3ReportErrorBo> listReportError(BaseConditionVO baseConditionVO) { |
| | | PageHelper.startPage(baseConditionVO.getPageNo(), baseConditionVO.getPageSize()); |
| | | List<C3ReportErrorBo> c3ReportErrorBos; |
| | | //为null的话是超管 |
| | | if (SecurityUtils.getClientId() == null) { |
| | | PageHelper.startPage(baseConditionVO.getPageNo(), baseConditionVO.getPageSize()); |
| | | c3ReportErrorBos = baseMapper.listReportError(null); |
| | | } else { |
| | | PageHelper.startPage(baseConditionVO.getPageNo(), baseConditionVO.getPageSize()); |
| | | c3ReportErrorBos = baseMapper.listReportError(SecurityUtils.getUserId()); |
| | | } |
| | | |