| | |
| | | package org.jeecg.modules.lsw.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.lsw.entity.LswMaterialOutbound; |
| | | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description: 物料出库单 |
| | |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface LswMaterialOutboundMapper extends BaseMapper<LswMaterialOutbound> { |
| | | |
| | | IPage<Map<String, Object>> getlswMaterialOutboundListData(IPage<Map> pageData, @Param("params")Map<String, String> paramMap); |
| | | } |