对比新文件 |
| | |
| | | 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.OutStoreDetail; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.tms.entity.vo.OutStoreDetailVo; |
| | | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description: 宸ュ叿鍑哄簱娴佹按 |
| | | * @Author: jeecg-boot |
| | | * @Date: 2025-05-23 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface IOutStoreDetailService extends IService<OutStoreDetail> { |
| | | |
| | | IPage<OutStoreDetailVo> queryPageList(Page<OutStoreDetailVo> page, Map<String, String[]> parameterMap); |
| | | |
| | | IPage<Map<String, Object>> outStoreDetailList(Integer pageNo, Integer pageSize, Map<String, String> query); |
| | | } |