package com.ycl.platform.mapper; import com.ycl.platform.domain.entity.TCheckPublish; import java.util.List; /** * 考核发布Mapper接口 * * @author ruoyi * @date 2024-03-07 */ public interface TCheckPublishMapper { /** * 查询考核发布 * * @param id 考核发布主键 * @return 考核发布 */ public TCheckPublish selectTCheckPublishById(Long id); /** * 查询考核发布列表 * * @param tCheckPublish 考核发布 * @return 考核发布集合 */ public List selectTCheckPublishList(TCheckPublish tCheckPublish); /** * 新增考核发布 * * @param tCheckPublish 考核发布 * @return 结果 */ public int insertTCheckPublish(TCheckPublish tCheckPublish); /** * 修改考核发布 * * @param tCheckPublish 考核发布 * @return 结果 */ public int updateTCheckPublish(TCheckPublish tCheckPublish); /** * 删除考核发布 * * @param id 考核发布主键 * @return 结果 */ public int deleteTCheckPublishById(Long id); /** * 批量删除考核发布 * * @param ids 需要删除的数据主键集合 * @return 结果 */ public int deleteTCheckPublishByIds(Long[] ids); }