package com.ruoyi.device.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.device.dto.LineInspectionDto; import com.ruoyi.device.pojo.LineInspection; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; /** * 线路巡检Mapper接口 */ @Mapper public interface LineInspectionMapper extends BaseMapper { /** * 查询线路巡检列表(关联设备信息) */ @Select("") List selectLineInspectionList(@Param("dto") LineInspectionDto dto); }