ThresholdManagementService.java 706 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.huimv.management.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.huimv.common.utils.PageUtils;
  4. import com.huimv.management.entity.ThresholdManagementEntity;
  5. import java.util.Map;
  6. /**
  7. * <p>
  8. * 报警阈值管理Service
  9. * </p>
  10. *
  11. * @author yinhao
  12. * @version 1.0
  13. * @date 2021-06-15 13:01:37
  14. */
  15. public interface ThresholdManagementService extends IService<ThresholdManagementEntity> {
  16. /**
  17. * 分页列表查询
  18. * @param params
  19. * @return
  20. */
  21. PageUtils queryPage(Map<String, Object> params);
  22. /**
  23. * 根据belongTo查询阈值
  24. * @param type
  25. * @return
  26. */
  27. Map<String, Double> selectByType(Short type);
  28. }