|
@@ -499,7 +499,7 @@ public class StoreLawFirmServiceImpl extends ServiceImpl<LawFirmMapper, LawFirm>
|
|
|
// 设置一个很大的页面大小来获取所有数据
|
|
// 设置一个很大的页面大小来获取所有数据
|
|
|
Page<LawFirmPaymentVO> page = new Page<>(1, Integer.MAX_VALUE);
|
|
Page<LawFirmPaymentVO> page = new Page<>(1, Integer.MAX_VALUE);
|
|
|
IPage<LawFirmPaymentVO> pageResult = lawFirmPaymentMapper.selectPaymentPageWithFirm(
|
|
IPage<LawFirmPaymentVO> pageResult = lawFirmPaymentMapper.selectPaymentPageWithFirm(
|
|
|
- page, null, null, null, null, null, null, null, null, null
|
|
|
|
|
|
|
+ page, null, null, null, null, null, null, null, null, null, null
|
|
|
);
|
|
);
|
|
|
|
|
|
|
|
List<LawFirmPaymentVO> paymentList = pageResult.getRecords();
|
|
List<LawFirmPaymentVO> paymentList = pageResult.getRecords();
|
|
@@ -951,13 +951,13 @@ public class StoreLawFirmServiceImpl extends ServiceImpl<LawFirmMapper, LawFirm>
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|
|
|
- public R<IPage<LawFirmPaymentVO>> getPaymentPageWithFirm(int pageNum, int pageSize, Integer firmId, String paymentAccount, String firmName, String creditCode, Integer status, Integer certificationStatus, String directorName, String createdTimeStart, String createdTimeEnd) {
|
|
|
|
|
- log.info("StoreLawFirmServiceImpl.getPaymentPageWithFirm?pageNum={},pageSize={},firmId={},paymentAccount={},firmName={},creditCode={},status={},certificationStatus={},directorName={},createdTimeStart={},createdTimeEnd={}",
|
|
|
|
|
- pageNum, pageSize, firmId, paymentAccount, firmName, creditCode, status, certificationStatus, directorName, createdTimeStart, createdTimeEnd);
|
|
|
|
|
|
|
+ public R<IPage<LawFirmPaymentVO>> getPaymentPageWithFirm(int pageNum, int pageSize, Integer firmId, String paymentAccount, String firmName, String creditCode, Integer status, Integer certificationStatus, String directorName, String phone, String createdTimeStart, String createdTimeEnd) {
|
|
|
|
|
+ log.info("StoreLawFirmServiceImpl.getPaymentPageWithFirm?pageNum={},pageSize={},firmId={},paymentAccount={},firmName={},creditCode={},status={},certificationStatus={},directorName={},phone={},createdTimeStart={},createdTimeEnd={}",
|
|
|
|
|
+ pageNum, pageSize, firmId, paymentAccount, firmName, creditCode, status, certificationStatus, directorName, phone, createdTimeStart, createdTimeEnd);
|
|
|
|
|
|
|
|
Page<LawFirmPaymentVO> page = new Page<>(pageNum, pageSize);
|
|
Page<LawFirmPaymentVO> page = new Page<>(pageNum, pageSize);
|
|
|
IPage<LawFirmPaymentVO> pageResult = lawFirmPaymentMapper.selectPaymentPageWithFirm(
|
|
IPage<LawFirmPaymentVO> pageResult = lawFirmPaymentMapper.selectPaymentPageWithFirm(
|
|
|
- page, firmId, paymentAccount, firmName, creditCode, status, certificationStatus, directorName, createdTimeStart, createdTimeEnd
|
|
|
|
|
|
|
+ page, firmId, paymentAccount, firmName, creditCode, status, certificationStatus, directorName, phone, createdTimeStart, createdTimeEnd
|
|
|
);
|
|
);
|
|
|
return R.data(pageResult);
|
|
return R.data(pageResult);
|
|
|
}
|
|
}
|