| | |
| | | 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 |
| | |
| | | |
| | | 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 |
| | | ) ; |
| | | |
| | | } |