File was renamed from ycl-common/src/main/java/com/ycl/service/store/UmsStoreInfoService.java |
| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ycl.entity.store.UmsStoreInfo; |
| | | import com.ycl.entity.user.UmsAdmin; |
| | | import com.ycl.entity.store.StoreInfo; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | /** |
| | |
| | | * @author lyq |
| | | * @since 2022-09-08 |
| | | */ |
| | | public interface UmsStoreInfoService extends IService<UmsStoreInfo> { |
| | | public interface StoreInfoService extends IService<StoreInfo> { |
| | | /** |
| | | * 根据门店名称分页获取门店列表列表 |
| | | * @param keyword 关键字 |
| | |
| | | * @param pageNum 页码 |
| | | * @return 分页实体 |
| | | */ |
| | | Page<UmsStoreInfo> list(String keyword, Integer pageSize, Integer pageNum); |
| | | Page<StoreInfo> list(String keyword, Integer pageSize, Integer pageNum); |
| | | |
| | | /** |
| | | * 读取excel文件动态加载文件 |