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