龚焕茏
2024-08-07 94acbd8f68123b1c17878c39494b1d8db1b7dfea
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.ycl.platform.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.exception.job.TaskException;
import com.ycl.platform.domain.entity.CheckTemplate;
import com.ycl.platform.domain.query.CheckTemplateQuery;
import com.ycl.system.AjaxResult;
import com.ycl.system.Result;
import org.quartz.SchedulerException;
 
import java.util.List;
 
/**
 * 考核模板Service接口
 * 
 * @author ruoyi
 * @date 2024-04-01
 */
public interface ICheckTemplateService extends IService<CheckTemplate>
{
    /**
     * 查询考核模板
     * 
     * @param id 考核模板主键
     * @return 考核模板
     */
    public CheckTemplateQuery selectCheckTemplateById(Integer id);
 
    /**
     * 查询考核模板列表
     * 
     * @param checkTemplateDTO 考核模板
     * @return 考核模板集合
     */
    public List<CheckTemplateQuery> selectCheckTemplateList(CheckTemplateQuery checkTemplateDTO);
 
    /**
     * 新增考核模板
     * 
     * @param checkTemplateDTO 考核模板
     * @return 结果
     */
    public int insertCheckTemplate(CheckTemplateQuery checkTemplateDTO) throws SchedulerException, TaskException;
 
    /**
     * 修改考核模板
     * 
     * @param checkTemplateDTO 考核模板
     * @return 结果
     */
    public AjaxResult updateCheckTemplate(CheckTemplateQuery checkTemplateDTO) throws SchedulerException, TaskException;
 
 
 
    /**
     * 删除考核模板信息
     * 
     * @param id 考核模板主键
     * @return 结果
     */
    public int deleteCheckTemplateById(Integer id) throws SchedulerException;
 
    Result pullList();
 
    int copyCheckTemplate(CheckTemplateQuery checkTemplateDTO) throws SchedulerException, TaskException;
 
//    /**
//     * 批量删除考核模板
//     *
//     * @param ids 需要删除的考核模板主键集合
//     * @return 结果
//     */
//    public int deleteCheckTemplateByIds(Integer[] ids);
}