JensionDzero 1 年之前
父節點
當前提交
68e795d74e

+ 0 - 1
benyun-core/src/main/java/com/benyun/core/service/impl/ChannelAnalyseServiceImpl.java

@@ -60,7 +60,6 @@ public class ChannelAnalyseServiceImpl implements ChannelAnalyseService {
         }
 
         List<WdInfo> wdInfos = wdInfoDao.selectList(queryWrapper);
-        System.out.println(wdInfos.size());
         for (WdInfo wdInfo : wdInfos) {
             String addrCode = wdInfo.getAddrCode();
             if (cityTierMap.containsKey(addrCode)) {

+ 0 - 4
benyun-core/src/main/java/com/benyun/core/service/impl/ChannelMapServiceImpl.java

@@ -55,7 +55,6 @@ public class ChannelMapServiceImpl implements ChannelMapService {
 
     @Override
     public WdCount area(List<String> channel, String rankType, String searchText, String[] addrCode) {
-        long start = System.currentTimeMillis();
         List<String> addrCodeList = new ArrayList<>();
 
         //1.根据不同级别得到地区码
@@ -157,9 +156,6 @@ public class ChannelMapServiceImpl implements ChannelMapService {
             else
                 wdCountBody.setRadio(0.0f);
         }
-        long end = System.currentTimeMillis();
-        System.out.println("运行时间:" + (end - start));
-
         WdCount wdCount = new WdCount();
         wdCount.setWdCountBodyList(result);
         wdCount.setTotal(total);