xiaoyong931011
2021-03-04 00eb9af6bb5f27d717226f3cb7cc231086448cee
src/main/java/com/xcong/excoin/modules/documentary/service/impl/DocumentaryServiceImpl.java
@@ -622,11 +622,11 @@
        documentaryOrderSetInfoVo.setFollowCnt(followCnt);
        
        Integer maxFollowCnt = followFollowerSettingEntity.getMaxFollowCnt();
        if(maxFollowCnt == 0){
           documentaryOrderSetInfoVo.setMaxFollowCnt(null);
        if(maxFollowCnt > 0){
           documentaryOrderSetInfoVo.setMaxFollowCnt(maxFollowCnt.toString());
      }
        documentaryOrderSetInfoVo.setMaxFollowCnt(maxFollowCnt.toString());
        documentaryOrderSetInfoVo.setMaxFollowCnt(null);
        log.info(memberId + "-最大持仓张数-"+maxFollowCnt.toString());
      return Result.ok(documentaryOrderSetInfoVo);
   }