#
luxiaotao1123
2024-11-16 bb3b18aa4627e24e3428f89c90b867bad5eb40f6
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
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);
 
    List<Action> selectLatestOfGroup(@Param("agvId") Long agvId, @Param("actionSts") Long actionSts);
 
}