You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package service;
|
|
|
|
import domain.Notify;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 公告的业务接口-
|
|
*/
|
|
public interface NotifyService {
|
|
/**
|
|
* 公告发布-
|
|
*/
|
|
void addNotify(Notify notify);
|
|
|
|
List<Notify> find();
|
|
|
|
List<Notify> findAll();
|
|
|
|
void deleteNotifyById(String notifyid);
|
|
|
|
|
|
}
|