|
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
|
package com.huaheng.api.acs.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.huaheng.api.acs.domain.AgvPort;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 【请填写功能名称】 数据层
*
* @author huaheng
* @date 2022-07-27
*/
public interface AgvPortCsMapper extends BaseMapper<AgvPort> {
void updateStatus(@Param("code") String code, @Param("status") String status);
void setContainerCode(@Param("code") String code, @Param("containerCode") String containerCode);
int addList(@Param("containers") List<AgvPort> containers);
boolean clearContainerCodeByCode(@Param("code") String code);
List<String> getSize2Code(@Param("workStationId")Long workStationId);
}
|