package com.ycl.platform.mapper;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ycl.platform.domain.entity.CheckPublish;
|
|
import java.util.List;
|
|
/**
|
* 考核发布Mapper接口
|
*
|
* @author ruoyi
|
* @date 2024-04-01
|
*/
|
public interface CheckPublishMapper extends BaseMapper<CheckPublish>
|
{
|
/**
|
* 查询考核发布
|
*
|
* @param id 考核发布主键
|
* @return 考核发布
|
*/
|
public CheckPublish selectCheckPublishById(Long id);
|
|
/**
|
* 查询考核发布列表
|
*
|
* @param checkPublish 考核发布
|
* @return 考核发布集合
|
*/
|
public List<CheckPublish> selectCheckPublishList(CheckPublish checkPublish);
|
|
/**
|
* 新增考核发布
|
*
|
* @param checkPublish 考核发布
|
* @return 结果
|
*/
|
public int insertCheckPublish(CheckPublish checkPublish);
|
|
/**
|
* 修改考核发布
|
*
|
* @param checkPublish 考核发布
|
* @return 结果
|
*/
|
public int updateCheckPublish(CheckPublish checkPublish);
|
|
/**
|
* 删除考核发布
|
*
|
* @param id 考核发布主键
|
* @return 结果
|
*/
|
public int deleteCheckPublishById(Long id);
|
|
/**
|
* 批量删除考核发布
|
*
|
* @param ids 需要删除的数据主键集合
|
* @return 结果
|
*/
|
public int deleteCheckPublishByIds(Long[] ids);
|
}
|