[测评系统]--测评系统核心代码库
linzhijie
2023-04-25 69089bf2d2ca7f7a0f8cb78423c9dd10b7445482
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);
}