package com.mindskip.xzs.service; import com.mindskip.xzs.domain.Notify; import java.util.List; /** * @author:xp * @date:2024/7/15 15:00 */ public interface NotifyService { /** * 添加 * * @param notify */ void add(Notify notify); /** * 通知我的 * */ List notifyMeList(); /** * 已读 * */ void setHasRead(List ids); /** * 管理员通知 * * @return */ List adminNotifyList(); }