自动化立体仓库 - WMS系统
#
luxiaotao1123
2022-04-20 af2039b5a0e5fd44e3b0a9b39b66b88c160da311
src/main/java/com/zy/asrs/mapper/BasDevpMapper.java
@@ -3,10 +3,16 @@
import com.baomidou.mybatisplus.mapper.BaseMapper;
import com.zy.asrs.entity.BasDevp;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.List;
@Mapper
@Repository
public interface BasDevpMapper extends BaseMapper<BasDevp> {
    List<Integer> getAvailableInSite(@Param("typeNo") Integer typeNo);
    List<Integer> getAvailableOutSite(@Param("typeNo") Integer typeNo);
}