package com.ots.project.system.notice.mapper; import com.ots.project.system.notice.domain.Notice; import java.util.List; public interface NoticeMapper { public Notice selectNoticeById(Long noticeId); public List selectNoticeList(Notice notice); public int insertNotice(Notice notice); public int updateNotice(Notice notice); public int deleteNoticeByIds(String[] noticeIds); }