许鹏程
2024-08-22 56ea74f3d449c9821b3b02bad61178c03b1d7e9a
src/main/java/com/product/administration/service/ide/IEarlyWarningManager.java
@@ -7,30 +7,30 @@
import com.product.core.exception.BaseException;
public interface IEarlyWarningManager {
   /**
    *    预警配置新增
    * @param fse
    * @return
    */
   String addWarning(FieldSetEntity fse) throws BaseException, SchedulerException, TaskException;
   /**
    *    预警配置修改
    * @param fse
    * @return
    * @throws TaskException
    * @throws SchedulerException
    * @throws BaseException
    * @throws TaskException
    * @throws SchedulerException
    * @throws BaseException
    */
   boolean updateWarning(FieldSetEntity fse) throws BaseException, SchedulerException, TaskException;
   /**
    *    预警配置删除
    * @param uuid
    * @return
    * @throws SchedulerException
    * @throws BaseException
    * @throws SchedulerException
    * @throws BaseException
    */
   boolean deleteWarning(String uuid) throws BaseException, SchedulerException;
@@ -42,4 +42,10 @@
    * @throws BaseException
    */
   boolean updateEarlyWarningTime(FieldSetEntity fse)throws BaseException, SchedulerException, TaskException;
   /**
    * 转发
    * @param fse
    */
   void transmit(FieldSetEntity fse);
}