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
package cn.gistack.sm.exam.service;
 
 
import cn.gistack.sm.exam.entity.ExamPlanUser;
import cn.gistack.sm.exam.vo.ExamPlanUserVO;
import org.springblade.core.mp.base.BaseService;
 
import java.util.List;
 
/**
 * @Description: 考核名录
 * @Author: jeecg-boot
 * @Date:   2022-12-07
 * @Version: V1.0
 */
public interface IExamPlanUserService extends BaseService<ExamPlanUser> {
 
    /**
     * 用户考核数据
     * @param startTime
     * @param endTime
     * @return
     */
    List<ExamPlanUserVO> selectUserAssessData(String startTime, String endTime);
 
}