1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.mes.rawglassdetails.mapper;
|
| 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 接口
| * </p>
| *
| * @author wf
| * @since 2024-09-10
| */
| public interface RawGlassStorageDetailsMapper extends BaseMapper<RawGlassStorageDetails> {
|
| /**
| * 按照吊装位和详情表状态查询空闲的吊装位
| *
| * @param liftingStation
| * @param state
| * @return
| */
| List<Integer> listBySlotState(@Param("leftingStation") List<String> liftingStation, @Param("state") List<Integer> state);
| }
|
|