教育训练处考试制证系统后端
“djh”
2025-02-18 3bf782ceb9411b81e5c03cadb73751f429e4051a
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
package com.gkhy.exam.pay.service;
 
import cn.com.jit.new_vstk.Bean.SignResult;
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.exam.pay.dto.rep.CoalPayRepDto;
import com.gkhy.exam.pay.dto.rep.CoalPayStudentRep;
import com.gkhy.exam.pay.dto.req.*;
import com.gkhy.exam.pay.entity.CoalPay;
import com.gkhy.exam.pay.entity.CoalPayStudent;
import com.gkhy.exam.pay.utils.ResultVo;
import com.ruoyi.common.core.domain.AjaxResult;
 
import java.io.IOException;
import java.util.List;
 
public interface CoalPayService extends IService<CoalPay> {
    List<CoalPayRepDto> selectCoalPayList(CoalPayReq coalPay);
 
    CoalPayRepDto selectCoalPayById(Long id);
 
    int insertCoalPay(CoalPayDto coalPayDto);
 
    int updateCoalPay(CoalPayDto coalPayDto);
 
    AjaxResult deleteCoalPayByIds(Long[] ids);
 
    List<CoalPayStudentRep> selectCoalPay(String idcard,String phone);
 
    int updateCoalPayType(CoalPayTypeReq coalPayDto);
 
    String personPayMoney(Long coalPayId, Long studentId);
 
    String teamPayMoney(CoalTeamPayReq coalTeamPayReq);
 
    ResultVo topay() throws IOException, BillSignException;
}