|
|
@ -597,9 +597,9 @@ public class IcPartyUnitServiceImpl extends BaseServiceImpl<IcPartyUnitDao, IcPa |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public PageData getListbrief(PartyUnitListbriefFormDTO form) { |
|
|
|
public PageData getListbrief(PartyUnitListbriefFormDTO form,TokenDto tokenDto) { |
|
|
|
PageHelper.startPage(form.getPageNo(),form.getPageSize()); |
|
|
|
List<PartyUnitListbrieResultDTO> dto = baseDao.getListbrief(form); |
|
|
|
List<PartyUnitListbrieResultDTO> dto = baseDao.getListbrief(form,tokenDto.getCustomerId()); |
|
|
|
PageInfo<PartyUnitListbrieResultDTO> info = new PageInfo<>(dto); |
|
|
|
return new PageData<>(dto,info.getTotal()); |
|
|
|
} |
|
|
|