package com.yssh.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import com.yssh.entity.AlertConfig; @Mapper public interface AlertConfigMapper { List query(Integer id); List getAll(); String getAlert(); int update(AlertConfig alert); int insert(AlertConfig alert); int delete(Integer id); }