| | |
| | | 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 |
| | |
| | | public interface StoreInfoService extends IService<StoreInfo> { |
| | | /** |
| | | * 根据门店名称分页获取门店列表列表 |
| | | * @param keyword 关键字 |
| | | * |
| | | * @param keyword 关键字 |
| | | * @param pageSize 页面大小 |
| | | * @param pageNum 页码 |
| | | * @param pageNum 页码 |
| | | * @return 分页实体 |
| | | */ |
| | | Page<StoreInfoVO> list(String keyword, Integer pageSize, Integer pageNum); |
| | | 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); |
| | | } |