62 lines
1.6 KiB
62 lines
1.6 KiB
1 year ago
|
package com.zc.business.mapper;
|
||
|
|
||
|
import java.util.List;
|
||
|
import com.zc.business.domain.DcInfoBoardVocabulary;
|
||
|
|
||
|
/**
|
||
|
* 情报板敏感字管理Mapper接口
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2024-01-05
|
||
|
*/
|
||
|
public interface DcInfoBoardVocabularyMapper
|
||
|
{
|
||
|
/**
|
||
|
* 查询情报板敏感字管理
|
||
|
*
|
||
|
* @param id 情报板敏感字管理主键
|
||
|
* @return 情报板敏感字管理
|
||
|
*/
|
||
|
public DcInfoBoardVocabulary selectDcInfoBoardVocabularyById(Long id);
|
||
|
|
||
|
/**
|
||
|
* 查询情报板敏感字管理列表
|
||
|
*
|
||
|
* @param dcInfoBoardVocabulary 情报板敏感字管理
|
||
|
* @return 情报板敏感字管理集合
|
||
|
*/
|
||
|
List<DcInfoBoardVocabulary> selectDcInfoBoardVocabularyList(DcInfoBoardVocabulary dcInfoBoardVocabulary);
|
||
|
|
||
|
/**
|
||
|
* 新增情报板敏感字管理
|
||
|
*
|
||
|
* @param dcInfoBoardVocabulary 情报板敏感字管理
|
||
|
* @return 结果
|
||
|
*/
|
||
|
int insertDcInfoBoardVocabulary(DcInfoBoardVocabulary dcInfoBoardVocabulary);
|
||
|
|
||
|
/**
|
||
|
* 修改情报板敏感字管理
|
||
|
*
|
||
|
* @param dcInfoBoardVocabulary 情报板敏感字管理
|
||
|
* @return 结果
|
||
|
*/
|
||
|
int updateDcInfoBoardVocabulary(DcInfoBoardVocabulary dcInfoBoardVocabulary);
|
||
|
|
||
|
/**
|
||
|
* 删除情报板敏感字管理
|
||
|
*
|
||
|
* @param id 情报板敏感字管理主键
|
||
|
* @return 结果
|
||
|
*/
|
||
|
int deleteDcInfoBoardVocabularyById(Long id);
|
||
|
|
||
|
/**
|
||
|
* 批量删除情报板敏感字管理
|
||
|
*
|
||
|
* @param ids 需要删除的数据主键集合
|
||
|
* @return 结果
|
||
|
*/
|
||
|
int deleteDcInfoBoardVocabularyByIds(Long[] ids);
|
||
|
}
|