1234567891011121314151617181920212223242526272829303132333435 |
- package com.huimv.management.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.huimv.common.utils.PageUtils;
- import com.huimv.management.entity.ThresholdManagementEntity;
- import java.util.Map;
- /**
- * <p>
- * 报警阈值管理Service
- * </p>
- *
- * @author yinhao
- * @version 1.0
- * @date 2021-06-15 13:01:37
- */
- public interface ThresholdManagementService extends IService<ThresholdManagementEntity> {
- /**
- * 分页列表查询
- * @param params
- * @return
- */
- PageUtils queryPage(Map<String, Object> params);
- /**
- * 根据belongTo查询阈值
- * @param type
- * @return
- */
- Map<String, Double> selectByType(Short type);
- }
|