对比新文件 |
| | |
| | | package org.jeecg.modules.tms.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import org.jeecg.modules.tms.entity.InStoreDetail; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description: 鍏ュ簱鏄庣粏 |
| | | * @Author: jeecg-boot |
| | | * @Date: 2025-05-19 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface IInStoreDetailService extends IService<InStoreDetail> { |
| | | |
| | | IPage<Map<String, Object>> findPageList(Integer pageNo, Integer pageSize, Map<String, String> query); |
| | | |
| | | } |