[测评系统]--测评系统核心代码库
林致杰
2023-10-19 a9687f1dba3b8d4f3973a9de624d12a94208d4ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ots.project.system.notice.service;
import com.ots.project.system.notice.domain.Notice;
import java.util.List;
 
public interface INoticeService {
    
    public Notice selectNoticeById(Long noticeId);
    
    public List<Notice> selectNoticeList(Notice notice);
    
    public int insertNotice(Notice notice);
    
    public int updateNotice(Notice notice);
    
    public int deleteNoticeByIds(String ids);
}