xiangpei
2024-05-31 c9d04bc519b73f7fc4841c34e2f15fca9db7aad2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ycl.jxkg.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.jxkg.domain.ExamPaper;
import com.ycl.jxkg.domain.ExamPaperAnswer;
import com.ycl.jxkg.domain.TaskExamCustomerAnswer;
 
import java.util.Date;
import java.util.List;
 
public interface TaskExamCustomerAnswerService extends IService<TaskExamCustomerAnswer> {
 
    void insertOrUpdate(ExamPaper examPaper, ExamPaperAnswer examPaperAnswer, Date now);
 
    TaskExamCustomerAnswer selectByTUid(Integer tid, Integer uid);
 
    List<TaskExamCustomerAnswer> selectByTUid(List<Integer> taskIds, Integer uid);
}