package com.ruoyi.service; import com.ruoyi.domain.ArchiveAnnotation; import java.util.List; /** * 【请填写功能名称】Service接口 * * @author ruoyi * @date 2026-01-19 */ public interface IArchiveAnnotationService { /** * 查询【请填写功能名称】 * * @param id 【请填写功能名称】主键 * @return 【请填写功能名称】 */ public ArchiveAnnotation selectArchiveAnnotationById(Long id); /** * 查询【请填写功能名称】列表 * * @param archiveAnnotation 【请填写功能名称】 * @return 【请填写功能名称】集合 */ public List selectArchiveAnnotationList(ArchiveAnnotation archiveAnnotation); /** * 新增【请填写功能名称】 * * @param archiveAnnotation 【请填写功能名称】 * @return 结果 */ public int insertArchiveAnnotation(ArchiveAnnotation archiveAnnotation); /** * 修改【请填写功能名称】 * * @param archiveAnnotation 【请填写功能名称】 * @return 结果 */ public int updateArchiveAnnotation(ArchiveAnnotation archiveAnnotation); /** * 批量删除【请填写功能名称】 * * @param ids 需要删除的【请填写功能名称】主键集合 * @return 结果 */ public int deleteArchiveAnnotationByIds(Long[] ids); /** * 删除【请填写功能名称】信息 * * @param id 【请填写功能名称】主键 * @return 结果 */ public int deleteArchiveAnnotationById(Long id); }