Преглед на файлове

APP 驾驶舱 基础信息 自助银行分类

zhulu преди 1 година
родител
ревизия
e9d0720da0

+ 4 - 0
soc-modules/soc-modules-core/src/main/java/com/xunmei/core/board/service/impl/AppCockpitServiceImpl.java

@@ -124,6 +124,10 @@ public class AppCockpitServiceImpl implements AppCockpitService {
         if (ObjectUtil.isNull(baseInfoDto)) {
             baseInfoDto = new AppOrgBaseInfoDto();
         }
+
+        vo.setOnlineATMCount(baseInfoDto.getOnlineATMCount());
+        vo.setOfflineATMCount(baseInfoDto.getOffATMCount());
+
         vo.setSecurityFacilities(new AppBaseInfoSecurityFacilitiesVo());
         vo.getSecurityFacilities().setGa382015(baseInfoDto.getBankingGA382015() + baseInfoDto.getOffATMGA382015());
         vo.getSecurityFacilities().setGa382021(baseInfoDto.getBankingGA382021() + baseInfoDto.getOffATMGA382021());

+ 5 - 0
soc-modules/soc-modules-core/src/main/java/com/xunmei/core/board/vo/app/AppBaseInfoVo.java

@@ -31,6 +31,11 @@ public class AppBaseInfoVo {
     private AppGa38RateVo offlineGa38;
      private AppGa38RateVo bankingGa38;
 
+    @ApiModelProperty("在行式自动银行数量")
+    private  int onlineATMCount;
+    @ApiModelProperty("离行式自动银行数量")
+    private int offlineATMCount;
+
     @ApiModelProperty("网点业务库总览(一、二、三、四类库)")
     private Map<String,Integer> businessStoreInfo;
 

+ 4 - 4
soc-modules/soc-modules-core/src/main/java/com/xunmei/core/resumption/service/impl/ResumptionRecordServiceImpl.java

@@ -331,19 +331,19 @@ public class ResumptionRecordServiceImpl extends ServiceImpl<ResumptionRecordMap
             throw new ServiceException("请选择机构再导出数据");
         }
         pageDto.setPageNum(1L);
-        pageDto.setPageSize(10001L);
+        pageDto.setPageSize(200001L);
         final List<ResumptionRecordPageVo> data = this.selectList(pageDto).getRows();
         if (CollectionUtil.isEmpty(data)) {
             throw new ServiceException("暂无可用数据导出!");
         }
 
-        if (data.size() > 10000) {
-            throw new ServiceException("每次最多导出10000条");
+        if (data.size() > 200000) {
+            throw new ServiceException("每次最多导出200000条");
         }
 
         Map<String, SysDictData> dicts = remoteDictDataService.selectDictByeType("resumption_status", SecurityConstants.INNER)
                 .stream().collect(Collectors.toMap(SysDictData::getDictValue, v -> v));
-        List<ResumptionRecordPageVo> limit = data.stream().limit(10000).collect(Collectors.toList());
+        List<ResumptionRecordPageVo> limit = data.stream().limit(200000).collect(Collectors.toList());
         int index = 1;
         for (ResumptionRecordPageVo r : limit) {
             r.setIndex(index++);