zxz 3 年之前
父節點
當前提交
6adfc89eec

+ 2 - 2
winsea-haixin-plugin-yiliangyiyun/src/main/java/com/yh/saas/plugin/yiliangyiyun/service/impl/ContractManagementInfoServiceImpl.java

@@ -2280,8 +2280,8 @@ public class ContractManagementInfoServiceImpl extends ServiceImpl<ContractManag
         pageView.put("pageSize", contractManagementInfo.getPageSize());
         pageView.put("currentPage", contractManagementInfo.getCurrentPage());
         // 查询服务商总数
-        Integer dataCount = baseMapper.getCountByCondition(pageView);
-        List<ContractManagementInfo> dataList = baseMapper.getListByCondition(pageView);
+        Integer dataCount = baseMapper.getContractCountByCondition(pageView);
+        List<ContractManagementInfo> dataList = baseMapper.getContractListByCondition(pageView);
 
         Page<ContractManagementInfo> page = new Page<>();
         page.setRecords(dataList == null ? Lists.newArrayList() : dataList);