songhuangfeng123
2022-09-08 bfb4c1e1d4e3f99f74a51ef5b67531f9d91d0dde
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
package com.gkhy.safePlatform.targetDuty.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.safePlatform.targetDuty.entity.ExamineTemplate;
import com.gkhy.safePlatform.commons.vo.ResultVO;
import com.gkhy.safePlatform.commons.query.PageQuery;
import com.gkhy.safePlatform.targetDuty.model.dto.req.ExamineTemplateQueryCriteria;
import com.gkhy.safePlatform.targetDuty.model.dto.req.ExamineTemplateSaveOrUpdate;
import com.gkhy.safePlatform.targetDuty.model.dto.resp.ExamineTemplateDto;
import org.springframework.security.core.Authentication;
 
import java.io.Serializable;
import java.util.List;
 
 
/**
 * 绩效考核标准(ExamineTemplate)表服务接口
 *
 * @author xurui
 * @since 2022-07-21 10:58:10
 */
public interface ExamineTemplateService {
    ResultVO queryAll(PageQuery<ExamineTemplateQueryCriteria> pageQuery);
    
    List<ExamineTemplate> queryAll(ExamineTemplateQueryCriteria criteria);
 
    ExamineTemplateDto selectOne(Serializable id);
 
    void addOrUpdate(ExamineTemplateSaveOrUpdate examineTemplateSaveOrUpdate, Authentication authentication);
 
    void delete(Long[] ids);
}