1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.yeshi.fanli.dao.mybatis.user;
|
| import org.apache.ibatis.annotations.Param;
|
| import com.yeshi.fanli.dao.BaseMapper;
| import com.yeshi.fanli.entity.bus.recommend.MaskKey;
|
| public interface MaskKeyMapper extends BaseMapper<MaskKey> {
|
| /**
| * 验证内容是否存在敏感词汇
| * @param content
| * @return
| */
| int examineContent(@Param("content") String content);
| }
|
|