自动化立体仓库 - WMS系统
#
Junjie
6 天以前 d74e41701d48afe3e36dbec7f242765fc47096ea
src/main/java/com/zy/asrs/mapper/LocMastMapper.java
@@ -3,10 +3,20 @@
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.LocMast;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
import java.util.List;
@Mapper
@Repository
public interface LocMastMapper extends BaseMapper<LocMast> {
    @Select("select loc_no from asr_loc_mast where 1=1 and loc_sts = 'O' and lev1 = #{lev}")
    List<String> queryGroupEmptyStock(Integer lev);
    List<Integer> getLevList();
    List<LocMast> selectLoc(@Param("rows") int[] rows);
}