自动化立体仓库 - WCS系统
*
lsh
2025-04-10 fe98cf73031f9736b13c70f4c877d680e0ae3ecb
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
27
28
29
30
31
32
33
package com.zy.asrs.mapper;
 
import com.zy.asrs.entity.DeviceError;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
public interface DeviceErrorMapper extends BaseMapper<DeviceError> {
 
    DeviceError selectByDeviceAndDeviceId(String device, Integer deviceId);
 
    Integer deleteByDeviceAndDeviceId(String device, Integer deviceId);
 
    List<DeviceError> selectDeviceErrorList(
            @Param("id")Long id,
            @Param("device")String device,
            @Param("deviceId")Integer deviceId,
            @Param("pageNumber")Integer curr,
            @Param("pageSize")Integer limit
    ) ;
 
    Long selectDeviceErrorListTotal(
            @Param("id")Long id,
            @Param("device")String device,
            @Param("deviceId")Integer deviceId
    ) ;
 
}