自动化立体仓库 - WMS系统
1
zhang
22 小时以前 ce50a18232be02616cb429b2885bf623ee030304
src/main/java/com/zy/asrs/mapper/BasDevpMapper.java
@@ -3,10 +3,20 @@
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);
    List<BasDevp> getAvailableInSiteAndDesc(@Param("typeNo") Integer typeNo);
    List<BasDevp> getAvailableOutSiteAndDesc(@Param("typeNo") Integer typeNo);
}