package com.xunmei.iot.mapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.xunmei.common.core.domain.iot.domain.IotDeviceDiagnoseThreshold; import com.xunmei.iot.dto.cameraDiagnose.DiagnoseThresholdPageDto; import com.xunmei.iot.vo.sensor.DiagnoseThresholdPageVo; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface DiagnoseThresholdChMapper { Page selectPageData(Page pageRequest, @Param("request") DiagnoseThresholdPageDto request); List selectAllDiagnoseThreshold(); }