自动化立体仓库 - WCS系统
Junjie
2023-08-11 5ede6d1ba71a47fa33034d6e815681f218d61ff9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.zy.asrs.mapper;
 
import com.zy.asrs.entity.CommandInfo;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
public interface CommandInfoMapper extends BaseMapper<CommandInfo> {
 
    List<CommandInfo> selectByTaskNoAndWrkNo(String taskNo, Integer wrkNo);
 
    List<CommandInfo> selectByWrkNo(Integer wrkNo);
 
    List<CommandInfo> selectByTaskNo(String taskNo);
 
    int saveToHistory(String taskNo);//将指令转日志
}