admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/service/impl/homemodule/SwiperPictureServiceImpl.java
@@ -95,7 +95,7 @@
   }
   @Override
   public void saveObject(MultipartFile file, SwiperPicture record, String jumpType, CommonShareInfo shareInfo)
   public void saveObject(MultipartFile file, SwiperPicture record, String jumpType, CommonShareInfo shareInfo,SystemEnum system)
         throws SwiperPictureException, Exception {
      if (record == null) {
         throw new SwiperPictureException(1, "参数不能为空");
@@ -127,7 +127,7 @@
      
      
      if (!StringUtil.isNullOrEmpty(jumpType)) {
         List<JumpDetailV2> listByType = jumpDetailV2Service.listByType(jumpType);
         List<JumpDetailV2> listByType = jumpDetailV2Service.listByType(jumpType,system);
         if (listByType != null && listByType.size() > 0) {
            record.setJumpDetail(listByType.get(0));
         }
@@ -480,7 +480,7 @@
               
               bannerVO.setComment(info.getComment());
               bannerVO.setParams(params.toString());
               bannerVO.setJumpDetail(jumpDetailV2Service.getByTypeCache("web"));
               bannerVO.setJumpDetail(jumpDetailV2Service.getByTypeCache("web",system));
            }
            listVo.add(bannerVO);
         }