ariesy 增加分页条件

release
yefei 2 years ago
parent 138c4bf990
commit c638af6100
  1. 2
      dxhy-base/src/main/java/com/dxhy/base/service/invoicecheck/BaseInvoiceManualCheckServiceImpl.java
  2. 1
      dxhy-base/src/main/resources/mapper/BaseSggxcxMapper.xml

@ -128,6 +128,8 @@ public class BaseInvoiceManualCheckServiceImpl extends MpBaseServiceImpl<BaseTDx
log.info("查询合计耗时:{}", System.currentTimeMillis() - enter);
PageHelper.startPage(curr, size);
pramsMap.put("curr",(curr -1) * size);
pramsMap.put("size", size);
long start1 = System.currentTimeMillis();
List<BaseTDxRecordInvoice> pageList = super.baseMapper.selectSggxcx(pramsMap);
log.info("手工认证 查询列表信息耗时:{}", System.currentTimeMillis() - start1);

@ -244,6 +244,7 @@
<if test="sortKprq == '2'">
order by t.invoice_date
</if>
limit #{curr},#{size}
<!-- <if test="qsksrq != null and qsksrq != '' and qsksrq != 'null' and qsjsrq != null and qsjsrq != '' and qsjsrq != 'null'">-->
<!-- order by t.qs_date desc,t.invoice_date desc-->
<!-- </if>-->

Loading…
Cancel
Save