教育训练处考试制证系统后端
“djh”
2025-01-24 5a88c770debe086dd82ab5ce8a4c957a3debdae7
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
33
34
35
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);
 
    List<CoalPayStudent> selectbyId(Long studentId);
 
    void updateByCoalPayId(CoalPayStudent coalPayStudent);
 
    void updateByCoalPayIdAndStatus(CoalPayStudent payStudent);
}