自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-24 f6e4a6bb673a04338b5a9e5d3ca980c2b10bdf7a
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);
}