| 12345678910111213141516 |
- 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<DiagnoseThresholdPageVo> selectPageData(Page<DiagnoseThresholdPageVo> pageRequest, @Param("request") DiagnoseThresholdPageDto request);
- List<IotDeviceDiagnoseThreshold> selectAllDiagnoseThreshold();
- }
|