package com.ycl.platform.service; import com.ycl.platform.domain.entity.CheckPublish; import java.util.List; /** * 考核发布Service接口 * * @author ruoyi * @date 2024-04-01 */ public interface ICheckPublishService { /** * 查询考核发布 * * @param id 考核发布主键 * @return 考核发布 */ public CheckPublish selectCheckPublishById(Long id); /** * 查询考核发布列表 * * @param checkPublish 考核发布 * @return 考核发布集合 */ public List selectCheckPublishList(CheckPublish checkPublish); /** * 新增考核发布 * * @param checkPublish 考核发布 * @return 结果 */ public int insertCheckPublish(CheckPublish checkPublish); /** * 修改考核发布 * * @param checkPublish 考核发布 * @return 结果 */ public int updateCheckPublish(CheckPublish checkPublish); /** * 批量删除考核发布 * * @param ids 需要删除的考核发布主键集合 * @return 结果 */ public int deleteCheckPublishByIds(Long[] ids); /** * 删除考核发布信息 * * @param id 考核发布主键 * @return 结果 */ public int deleteCheckPublishById(Long id); }