| | |
| | | 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); |
| | | 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);
|
| | | } |