package com.zy.asrs.wms.asrs.mapper; import com.zy.asrs.wms.asrs.entity.LocDetl; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.executor.Executor; import org.apache.ibatis.mapping.MappedStatement; import org.apache.ibatis.plugin.Intercepts; import org.apache.ibatis.plugin.Signature; import org.springframework.stereotype.Repository; import java.util.List; @Mapper @Repository public interface LocDetlMapper extends BaseMapper { List getList(String matnr, String batch, List ids); List getStock(String matnr, String batch, List ids); }