You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.0 KiB
Java

8 years ago
package com.ruoyi.system.mapper;
8 years ago
import java.util.List;
8 years ago
import com.ruoyi.system.domain.SysNotice;
8 years ago
/**
*
*
* @author ruoyi
*/
8 years ago
public interface SysNoticeMapper
8 years ago
{
/**
*
*
* @param noticeId ID
* @return
*/
8 years ago
public SysNotice selectNoticeById(Long noticeId);
8 years ago
/**
*
*
* @param notice
* @return
*/
8 years ago
public List<SysNotice> selectNoticeList(SysNotice notice);
8 years ago
/**
*
*
* @param notice
* @return
*/
8 years ago
public int insertNotice(SysNotice notice);
8 years ago
/**
*
*
* @param notice
* @return
*/
8 years ago
public int updateNotice(SysNotice notice);
8 years ago
/**
*
*
* @param noticeIds ID
* @return
*/
public int deleteNoticeByIds(String[] noticeIds);
}