| package doumeemes.dao.ext; | 
|   | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
| import doumeemes.dao.business.model.DeviceCheck; | 
| import doumeemes.dao.ext.vo.DeviceCheckExtListVO; | 
| import doumeemes.dao.ext.dto.QueryDeviceCheckExtDTO; | 
| import io.lettuce.core.dynamic.annotation.Param; | 
|   | 
| import java.util.List; | 
|   | 
| public interface DeviceCheckExtMapper extends BaseMapper<DeviceCheck> { | 
|   | 
|     /** | 
|      * 管理页面查询 | 
|      * @author 江蹄蹄 | 
|      * @date 2022/07/12 10:30 | 
|      */ | 
|     List<DeviceCheckExtListVO> selectList(QueryDeviceCheckExtDTO dto); | 
|   | 
|   | 
|     DeviceCheck selectOneById(@Param("id") Integer id); | 
| } |