package com.doumee.service.business;
|
|
import com.doumee.core.model.PageData;
|
import com.doumee.core.model.PageWrap;
|
import com.doumee.dao.business.model.Notice;
|
|
import java.util.List;
|
|
/**
|
* 消息通知信息Service定义
|
* @author rk
|
* @date 2026/04/20
|
*/
|
public interface NoticeService {
|
|
Integer create(Notice notice);
|
|
void deleteById(Integer id);
|
|
void delete(Notice notice);
|
|
void deleteByIdInBatch(List<Integer> ids);
|
|
void updateById(Notice notice);
|
|
void updateByIdInBatch(List<Notice> notices);
|
|
Notice findById(Integer id);
|
|
Notice findOne(Notice notice);
|
|
List<Notice> findList(Notice notice);
|
|
PageData<Notice> findPage(PageWrap<Notice> pageWrap);
|
|
long count(Notice notice);
|
}
|