1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package cn.lili.modules.wechat.mapper;
|
| import cn.lili.modules.wechat.entity.dos.WechatMessage;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import org.apache.ibatis.annotations.Delete;
|
| /**
| * 微信消息 Dao层
| *
| * @author Chopper
| */
| public interface WechatMessageMapper extends BaseMapper<WechatMessage> {
|
| /**
| * 删除微信消息
| */
| @Delete("delete from li_wechat_message")
| void deleteAll();
| }
|
|