|
|
|
@ -4,6 +4,7 @@ import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
|
|
import com.dxhy.extend.entity.*; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springframework.beans.factory.annotation.Value; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
@ -22,6 +23,7 @@ import com.github.pagehelper.PageInfo; |
|
|
|
|
/** |
|
|
|
|
* @author dxhy |
|
|
|
|
*/ |
|
|
|
|
@Slf4j |
|
|
|
|
@SuppressWarnings({"AlibabaUndefineMagicConstant", "AlibabaMethodTooLong"}) |
|
|
|
|
@Service |
|
|
|
|
public class ExtInvoicePoolServiceImpl extends MpBaseServiceImpl<ExtInvoicePoolDao, ExtAddTaxInvoice> |
|
|
|
@ -229,7 +231,9 @@ public class ExtInvoicePoolServiceImpl extends MpBaseServiceImpl<ExtInvoicePoolD |
|
|
|
|
json.put("hjse", hjse); |
|
|
|
|
} |
|
|
|
|
PageHelper.startPage(curr, size); |
|
|
|
|
log.info("开始进行分页查询"); |
|
|
|
|
List<ExtOtherInvoice> pageList = super.baseMapper.listOtherInvoice(pramsMap); |
|
|
|
|
log.info("查询结果为 {}",pageList); |
|
|
|
|
PageInfo<ExtOtherInvoice> pageInfo = new PageInfo<>(pageList); |
|
|
|
|
// 用于页面返回list对象
|
|
|
|
|
if (pageList != null && pageList.size() > 0) { |
|
|
|
|