You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.0 KiB
25 lines
1.0 KiB
package com.yanzhen.mapper; // 定义包名
|
|
|
|
import java.util.List; // 导入List集合类
|
|
import java.util.Map; // 导入Map集合类
|
|
|
|
import com.yanzhen.entity.NoticeReceive; // 导入NoticeReceive实体类
|
|
|
|
public interface NoticeReceiveMapper { // 定义NoticeReceiveMapper接口
|
|
|
|
public int create(NoticeReceive noticeReceive); // 创建NoticeReceive记录的方法
|
|
|
|
public int delete(Integer id); // 根据ID删除NoticeReceive记录的方法
|
|
|
|
public int deleteByNoticeId(Integer noticeId); // 根据通知ID删除NoticeReceive记录的方法
|
|
|
|
public int update(NoticeReceive noticeReceive); // 更新NoticeReceive记录的方法
|
|
|
|
public int updateSelective(NoticeReceive noticeReceive); // 选择性更新NoticeReceive记录的方法
|
|
|
|
public List<NoticeReceive> query(NoticeReceive noticeReceive); // 查询NoticeReceive记录列表的方法
|
|
|
|
public NoticeReceive detail(Integer id); // 根据ID获取NoticeReceive详情的方法
|
|
|
|
public int count(NoticeReceive noticeReceive); // 统计NoticeReceive记录数量的方法
|
|
} |