3-29 bug 修复
This commit is contained in:
+6
-1
@@ -50,7 +50,12 @@ public class SarLawsAttrDetailedListServiceImpl extends ServiceImpl<SarLawsAttrD
|
||||
//查询标准id
|
||||
List<String> lawsIds = sarLawsAttrDetailedListDao.selectLawsId(sarFindDto.getId(),(sarFindDto.getPage())-1,sarFindDto.getSize(),sarFindDto);
|
||||
if (CollectionUtils.isEmpty(lawsIds)){
|
||||
return null;
|
||||
IPage<LawsDto> list1 = new Page<>();
|
||||
list1.setCurrent(selectPage.getCurrent());
|
||||
list1.setTotal(selectPage.getTotal());
|
||||
list1.setSize(selectPage.getSize());
|
||||
list1.setPages(selectPage.getPages());
|
||||
return list1;
|
||||
}
|
||||
List<LawsDto> list = sarLawsAttrDetailedListDao.selectLawsById(lawsIds,sarFindDto);
|
||||
for (LawsDto lawsDto:list){
|
||||
|
||||
Reference in New Issue
Block a user