教育训练处考试制证系统后端
“djh”
2025-01-23 5be0be6c58130b6c8a638baaac04481f756adf15
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.pay.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.exam.pay.dto.req.CoalPayStudentReq;
import com.gkhy.exam.pay.entity.CoalPayStudent;
import com.ruoyi.common.core.domain.AjaxResult;
import org.springframework.web.multipart.MultipartFile;
 
import java.io.IOException;
import java.util.List;
 
public interface CoalPayStudentService extends IService<CoalPayStudent> {
 
    List<CoalPayStudent> selectCoalPayStudentList(Long coalPayId);
 
    AjaxResult updateByCoalPayStudent(CoalPayStudent coalPayStudent);
 
    int insertStudent(CoalPayStudent coalPayStudent);
 
    int deleteStudent(Long[] ids);
 
    AjaxResult uploadStudent(MultipartFile file,Long coalPayId) throws IOException;
 
    List<CoalPayStudent> selectByCoalPayId(Long id);
 
    List<CoalPayStudent> selectByCoalPayIdAndPayStatus(Long id, int status);
 
    List<CoalPayStudent> selectbyIdcard(CoalPayStudentReq coalPayStudent);
 
}