|  |  | 
 |  |  | import com.baomidou.mybatisplus.mapper.BaseMapper; | 
 |  |  | import com.zy.asrs.entity.LocDetl; | 
 |  |  | import org.apache.ibatis.annotations.Mapper; | 
 |  |  | import org.apache.ibatis.annotations.Param; | 
 |  |  | import org.springframework.stereotype.Repository; | 
 |  |  |  | 
 |  |  | import java.util.List; | 
 |  |  | 
 |  |  | @Repository | 
 |  |  | public interface LocDetlMapper extends BaseMapper<LocDetl> { | 
 |  |  |  | 
 |  |  |     List<LocDetl> getStockOutPage(@Param("pageNumber")int pageNumber, @Param("pageSize")int pageSize, @Param("param") Map param); | 
 |  |  |     List<LocDetl> getStockOutPage(Map<String, Object> map); | 
 |  |  |  | 
 |  |  |     Integer getStockOutPageCount(); | 
 |  |  |     Integer getStockOutPageCount(Map<String, Object> map); | 
 |  |  |  | 
 |  |  | } |