DiagnoseThresholdChMapper.java 689 B

12345678910111213141516
  1. package com.xunmei.iot.mapper;
  2. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  3. import com.xunmei.common.core.domain.iot.domain.IotDeviceDiagnoseThreshold;
  4. import com.xunmei.iot.dto.cameraDiagnose.DiagnoseThresholdPageDto;
  5. import com.xunmei.iot.vo.sensor.DiagnoseThresholdPageVo;
  6. import org.apache.ibatis.annotations.Param;
  7. import org.springframework.stereotype.Repository;
  8. import java.util.List;
  9. @Repository
  10. public interface DiagnoseThresholdChMapper {
  11. Page<DiagnoseThresholdPageVo> selectPageData(Page<DiagnoseThresholdPageVo> pageRequest, @Param("request") DiagnoseThresholdPageDto request);
  12. List<IotDeviceDiagnoseThreshold> selectAllDiagnoseThreshold();
  13. }