package com.hxzk.service; import com.baomidou.mybatisplus.extension.service.IService; import com.github.pagehelper.PageInfo; import com.hxzk.pojo.TbTag; import com.hxzk.pojo.TbWarning; import org.springframework.stereotype.Component; import org.springframework.stereotype.Service; import java.util.List; @Service public interface WarningService extends IService { PageInfo findAll(Integer page, Integer limit); PageInfo findAllHouTai(Integer page, Integer limit); PageInfo findAllStatus(Integer page, Integer limit); PageInfo findwarningSearch(Integer page, Integer limit,TbWarning warning); PageInfo findwarningSearchHouTai(Integer page, Integer limit,TbWarning warning); PageInfo findwarningScreen(Integer page, Integer limit,TbWarning warning); List findDaPingGaoJing(); Integer findDaPingWeiChuLiCount(); TbWarning findIdXiangXi(Integer id); void ChuliWarning(TbWarning warning,String ids); void DaPingChuliWarning(TbWarning warning); TbWarning findtagidWarning (String ids); //根据类型修改当天的告警为不可见 void UpWarningIsshow(String type); //全部修改或类型全部修改 void UpAllWarning(TbWarning warning); List findNowAll(String type); TbWarning findIdWarning(Integer id); void updateIDWarning(Integer id); }