guoshilong
2023-04-03 973ad0fe0c378d83fd342475c0197ec15d5e1bd7
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 cn.gistack.sm.exam.mapper;
 
import java.util.List;
 
import cn.gistack.sm.exam.entity.ExamTarget;
import cn.gistack.sm.exam.vo.ExamTargetVO;
import org.apache.ibatis.annotations.Param;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 
/**
 * @Description: 考核指标
 */
public interface ExamTargetMapper extends BaseMapper<ExamTarget> {
 
    /**
     * 自定义分页列表查询
     *
     * @param examTarget 考核指标 vo 对象
     * @return
     */
    List<ExamTargetVO> selectExamTargetPage(@Param("examTarget") ExamTargetVO examTarget);
 
    /**
     * 获取方案指标对象
     * @param planId 方案id
     * @param type 1巡检 2.督办 3.事件处理
     * @return 指标对象
     */
    ExamTargetVO getExamTargetByPlandId(@Param("planId") String planId,@Param("type") String type);
 
}