提交 | 用户 | 时间
|
1ac2bc
|
1 |
package cn.stylefeng.guns.sys.modular.system.mapper; |
懒 |
2 |
|
|
3 |
import cn.stylefeng.guns.sys.modular.system.entity.Notice; |
|
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 NoticeMapper extends BaseMapper<Notice> { |
|
19 |
|
|
20 |
/** |
|
21 |
* 获取通知列表 |
|
22 |
*/ |
|
23 |
Page<Map<String, Object>> list(@Param("page") Page page, @Param("condition") String condition); |
|
24 |
|
|
25 |
} |