#
luxiaotao1123
2024-09-27 6df1b6a36e02657c6e91ead1a5c9de4a95fd548d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.zy.acs.manager.manager.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.zy.acs.manager.manager.entity.Action;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
public interface ActionMapper extends BaseMapper<Action> {
 
    int updateStsByGroupId(@Param("groupId") String groupId, @Param("actionSts") Long actionSts);
 
    List<Map<String, Object>> selectRecentForInout();
 
    List<Map<String, Object>> selectCountGroupByType();
 
    List<String> selectPrepareGroup();
 
    List<Long> selectTaskIdsByGroupId(@Param("groupId") String groupId);
 
    List<String> selectSortCodeByAgv(@Param("agvId") Long agvId);
}