package com.zc.business.service; import java.util.List; import com.ruoyi.common.core.domain.AjaxResult; import com.zc.business.domain.DcInfoBoardVocabulary; /** * 情报板敏感字管理Service接口 * * @author ruoyi * @date 2024-01-05 */ public interface IDcInfoBoardVocabularyService { /** * 查询情报板敏感字管理 * * @param id 情报板敏感字管理主键 * @return 情报板敏感字管理 */ public DcInfoBoardVocabulary selectDcInfoBoardVocabularyById(Long id); /** * 查询情报板敏感字管理列表 * * @param dcInfoBoardVocabulary 情报板敏感字管理 * @return 情报板敏感字管理集合 */ List selectDcInfoBoardVocabularyList(DcInfoBoardVocabulary dcInfoBoardVocabulary); /** * 新增情报板敏感字管理 * * @param dcInfoBoardVocabulary 情报板敏感字管理 * @return 结果 */ int insertDcInfoBoardVocabulary(DcInfoBoardVocabulary dcInfoBoardVocabulary); /** * 修改情报板敏感字管理 * * @param dcInfoBoardVocabulary 情报板敏感字管理 * @return 结果 */ int updateDcInfoBoardVocabulary(DcInfoBoardVocabulary dcInfoBoardVocabulary); /** * 批量删除情报板敏感字管理 * * @param ids 需要删除的情报板敏感字管理主键集合 * @return 结果 */ int deleteDcInfoBoardVocabularyByIds(Long[] ids); /** * 删除情报板敏感字管理信息 * * @param id 情报板敏感字管理主键 * @return 结果 */ int deleteDcInfoBoardVocabularyById(Long id); /** * 检查情报板是否含有敏感字 * * @param content 情报板内容 * @return 结果 */ AjaxResult checkBoardContent(String content); }