懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 package cn.stylefeng.guns.sys.modular.rest.mapper;
2
3 import cn.stylefeng.guns.sys.modular.rest.entity.RestNotice;
4 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
5 import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
6 import org.apache.ibatis.annotations.Param;
7
8 import java.util.Map;
9
10 /**
11  * <p>
12  * 通知表 Mapper 接口
13  * </p>
14  *
15  * @author stylefeng
16  * @since 2018-12-07
17  */
18 public interface RestNoticeMapper extends BaseMapper<RestNotice> {
19
20     /**
21      * 获取通知列表
22      */
23     Page<Map<String, Object>> list(@Param("page") Page page, @Param("condition") String condition);
24
25 }