教育训练处考试制证系统后端
“djh”
2025-02-14 2635d30e61cf7ffec015c830da761416604c9518
exam-system/src/main/java/com/gkhy/exam/pay/service/CoalPayService.java
@@ -1,16 +1,16 @@
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.CoalPayDto;
import com.gkhy.exam.pay.dto.req.CoalPayReq;
import com.gkhy.exam.pay.dto.req.CoalPayStudentReq;
import com.gkhy.exam.pay.dto.req.CoalPayTypeReq;
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> {
@@ -29,4 +29,8 @@
    int updateCoalPayType(CoalPayTypeReq coalPayDto);
    String personPayMoney(Long coalPayId, Long studentId);
    String teamPayMoney(CoalTeamPayReq coalTeamPayReq);
    SignResult topay() throws IOException;
}