fuliqi
2024-04-02 32b4f6188f32e6c08e813efa98a25d94eacdc0c6
ycl-server/src/main/java/com/ycl/platform/service/ITCheckPublishService.java
New file
@@ -0,0 +1,66 @@
package com.ycl.platform.service;
import com.ycl.platform.domain.entity.TCheckPublish;
import com.ycl.system.Result;
import java.util.List;
/**
 * 考核发布Service接口
 *
 * @author ruoyi
 * @date 2024-03-07
 */
public interface ITCheckPublishService
{
    /**
     * 查询考核发布
     *
     * @param id 考核发布主键
     * @return 考核发布
     */
    public TCheckPublish selectTCheckPublishById(Long id);
    /**
     * 查询考核发布列表
     *
     * @param tCheckPublish 考核发布
     * @return 考核发布集合
     */
    public List<TCheckPublish> selectTCheckPublishList(TCheckPublish tCheckPublish);
    /**
     * 新增考核发布
     *
     * @param tCheckPublish 考核发布
     * @return 结果
     */
    public int insertTCheckPublish(TCheckPublish tCheckPublish);
    /**
     * 修改考核发布
     *
     * @param tCheckPublish 考核发布
     * @return 结果
     */
    public int updateTCheckPublish(TCheckPublish tCheckPublish);
    /**
     * 批量删除考核发布
     *
     * @param ids 需要删除的考核发布主键集合
     * @return 结果
     */
    public int deleteTCheckPublishByIds(Long[] ids);
    /**
     * 删除考核发布信息
     *
     * @param id 考核发布主键
     * @return 结果
     */
    public int deleteTCheckPublishById(Long id);
    Result all();
}