huangzhen
2023-09-15 ea09629d8857e0afa329858f72cf1c93e25b813c
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
package com.gkhy.exam.coalmine.service;
 
import com.gkhy.exam.coalmine.model.dto.req.ExamReceiveReqDTO;
import com.gkhy.exam.coalmine.model.dto.req.TrainReceiveReqDTO;
import com.gkhy.exam.coalmine.model.dto.resp.GetExamDataRespDTO;
import com.gkhy.exam.coalmine.model.dto.resp.GetTrainDataRespDTO;
import com.ruoyi.common.core.domain.AjaxResult;
import org.springframework.web.multipart.MultipartFile;
 
import java.util.List;
 
/**
 * @author Mr.huang
 * @decription
 * @date 2023/9/13 10:19
 */
public interface EmonRecordManagerService {
 
    AjaxResult examReceive(MultipartFile[] file,ExamReceiveReqDTO reqDTO);
 
    AjaxResult trainReceive(MultipartFile[] file,TrainReceiveReqDTO reqDTO);
 
    List<GetExamDataRespDTO> getExamData();
 
    List<GetTrainDataRespDTO> getTrainData();
 
    AjaxResult deleteExamRecord(Long id);
 
    AjaxResult deleteTrainRecord(Long id);
}