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.edgstoragecage.mapper;
|
| import com.github.yulichang.base.MPJBaseMapper;
| import com.mes.edgstoragecage.entity.EdgStorageCage;
| import org.apache.ibatis.annotations.Param;
|
| /**
| * <p>
| * Mapper 接口
| * </p>
| *
| * @author zhoush
| * @since 2024-04-07
| */
| public interface EdgStorageCageMapper extends MPJBaseMapper<EdgStorageCage> {
|
| /**
| * 相同尺寸可以放下的格子
| *
| * @param deviceId
| * @param width
| * @param height
| * @param slot
| * @return
| */
| EdgStorageCage getEdgStorageCageBySize(@Param("deviceId") int deviceId, @Param("width") double width, @Param("height") double height, @Param("slot") int slot);
| }
|
|