自动化立体仓库 - WCS系统
999
zhangc
8 天以前 3c3ec87a6ac907d375f2fb78f0882ab9f30a1533
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.asrs.mapper;
 
import com.zy.asrs.entity.BasShuttleOpt;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
@Mapper
@Repository
public interface BasShuttleOptMapper extends BaseMapper<BasShuttleOpt> {
 
    List<Map<String, Object>> selectRunStatistic();//获取小车每天运行数据
 
    List<Map<String, Object>> selectRunErrorStatistic(int time);//获取小车每天运行异常数据
 
}