教育训练处考试制证系统后端
heheng
2025-02-21 6448b8ad10f383dce2e3a2b4aab12965fe851d94
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
36
37
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);
 
    void updateByIdAndPayType(CoalPayStudent payStudent);
}