zhanghua
2023-12-12 bc2da7908a227c09e5cc7b6d8dab3e9c94b784a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.ycl.service.store;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.entity.store.StoreInfo;
import com.ycl.entity.store.StoreScore;
import com.ycl.vo.store.StoreInfoVO;
import org.springframework.web.multipart.MultipartFile;
 
/**
 * <p>
 * 服务类
 * </p>
 *
 * @author lyq
 * @since 2022-09-08
 */
public interface StoreInfoService extends IService<StoreInfo> {
    /**
     * 根据门店名称分页获取门店列表列表
     *
     * @param keyword  关键字
     * @param pageSize 页面大小
     * @param pageNum  页码
     * @return 分页实体
     */
    Page<StoreInfoVO> list(String keyword, Integer pageSize, Integer pageNum,String status);
 
    /**
     * 读取excel文件动态加载文件
     *
     * @param file
     * @return
     */
    boolean addByExcel(MultipartFile file);
 
    Page<StoreScore> getScoreList(Long storeId, Integer pageSize, Integer pageNum);
}