Procházet zdrojové kódy

引用方式修改

zhangchen před 4 měsíci
rodič
revize
4d056249a4

+ 4 - 2
alien-store/src/main/java/shop/alien/store/service/StoreOfficialAlbumService.java

@@ -2,6 +2,8 @@ package shop.alien.store.service;
 
 import com.baomidou.mybatisplus.extension.service.IService;
 import shop.alien.entity.store.StoreOfficialAlbum;
+import shop.alien.entity.store.vo.StoreAlbumNameVo;
+import shop.alien.entity.store.vo.StoreOfficialAlbumImgVo;
 import shop.alien.entity.store.vo.StoreOfficialAlbumVo;
 
 import java.util.List;
@@ -25,7 +27,7 @@ public interface StoreOfficialAlbumService extends IService<StoreOfficialAlbum>
      * @param albumName 相册名称,可选。例如:酒水、餐食、环境、全部等。当为null或空字符串时,查询全部
      * @return 图片列表和总数
      */
-    shop.alien.entity.store.vo.StoreOfficialAlbumImgVo getOfficialAlbumImgList(Integer storeId, String albumName);
+    StoreOfficialAlbumImgVo getOfficialAlbumImgList(Integer storeId, String albumName);
 
     /**
      * 获取官方相册名称列表(客户端)
@@ -36,5 +38,5 @@ public interface StoreOfficialAlbumService extends IService<StoreOfficialAlbum>
      * @param storeId 门店ID,必填
      * @return 相册名称列表,包含相册名称和图片数量
      */
-    List<shop.alien.entity.store.vo.StoreAlbumNameVo> getAlbumNameList(Integer storeId);
+    List<StoreAlbumNameVo> getAlbumNameList(Integer storeId);
 }