| | |
| | | package com.mes.rawglassdetails.mapper; |
| | | |
| | | import com.mes.rawglassdetails.entity.RawGlassStorageDetails; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.mes.rawglassdetails.entity.RawGlassStorageDetails; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * Mapper 接口 |
| | | * Mapper 接口 |
| | | * </p> |
| | | * |
| | | * @author wf |
| | |
| | | */ |
| | | public interface RawGlassStorageDetailsMapper extends BaseMapper<RawGlassStorageDetails> { |
| | | |
| | | /** |
| | | * 按照吊装位和详情表状态查询空闲的吊装位 |
| | | * |
| | | * @param liftingStation |
| | | * @param state |
| | | * @return |
| | | */ |
| | | List<Integer> listBySlotState(@Param("leftingStation") List<Integer> liftingStation, @Param("state") List<Integer> state); |
| | | } |