|
|
@ -314,8 +314,13 @@ public class GovIssueServiceImpl implements GovIssueService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public List<IssueInfoDTO> selectShiftProjectIssueList(String customerId,String gridId) { |
|
|
|
return issueDao.selectShiftProjectIssueList(customerId,gridId); |
|
|
|
public List<IssueInfoDTO> selectShiftProjectIssueList(String customerId, String gridId, Integer pageNo, Integer pageSize) { |
|
|
|
if (pageNo != null && pageSize != null) { |
|
|
|
PageHelper.startPage(pageNo, pageSize); |
|
|
|
}else{ |
|
|
|
PageHelper.startPage(NumConstant.ONE, NumConstant.TWENTY); |
|
|
|
} |
|
|
|
return issueDao.selectShiftProjectIssueList(customerId, gridId); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|