| | |
| | | package org.jeecg.modules.lsw.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.lsw.entity.LswMaterialInbound; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description: 物料入库单 |
| | |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface ILswMaterialInboundService extends IService<LswMaterialInbound> { |
| | | |
| | | IPage<Map<String, Object>> getlswMaterialInboundListData(Integer pageNo, Integer pageSize, HttpServletRequest req); |
| | | } |