package com.yssh.service; import java.util.List; import com.yssh.entity.AlertConfig; public interface IAlertConfigService { List getAll(); List query(Integer id); int update(AlertConfig config); int insert(AlertConfig config); int delete(Integer id); }