guoshilong
2023-05-18 6cd2da8eb7d7aefecd96a19ebbfe9caba59ea88c
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
package cn.gistack.sm.exam.service;
 
 
import cn.gistack.sm.exam.entity.ExamTarget;
import cn.gistack.sm.exam.vo.ExamTargetVO;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * @Description: 考核指标
 * @Author: jeecg-boot
 * @Date:   2022-11-09
 * @Version: V1.0
 */
public interface IExamTargetService extends IService<ExamTarget> {
 
    /**
     * 自定义分页列表查询
     *
     * @param examTarget 考核指标 vo 对象
     * @param page 分页对象
     * @return
     */
    IPage<ExamTargetVO> selectExamTargetPage(IPage<ExamTargetVO> page, ExamTargetVO examTarget);
 
    /**
     * 获取方案指标对象
     * @param planId 方案id
     * @param type 1巡检 2.督办 3.事件处理
     * @return 指标对象
     */
    ExamTargetVO getExamTargetByPlandId(String planId, String type);
 
}