教育训练处考试制证系统后端
“djh”
2025-02-25 70dcf4e610a0ec5fd6ca2c3daf9edf4957b30529
exam-system/src/main/java/com/gkhy/exam/pay/service/NonCoalPayStudentService.java
@@ -1,6 +1,9 @@
package com.gkhy.exam.pay.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.gkhy.exam.pay.dto.rep.NonCoalStuRep;
import com.gkhy.exam.pay.dto.req.NonCoalPayStuImport;
import com.gkhy.exam.pay.dto.req.NonCoalPayStudentReqDto;
import com.gkhy.exam.pay.entity.NonCoalPayStudent;
import java.util.List;
@@ -20,6 +23,7 @@
     */
    public NonCoalPayStudent selectNonCoalPayStudentById(Long id);
    /**
     * 查询【请填写功能名称】列表
     *
@@ -27,6 +31,11 @@
     * @return 【请填写功能名称】集合
     */
    public List<NonCoalPayStudent> selectNonCoalPayStudentList(NonCoalPayStudent nonCoalPayStudent);
    public String sendOrder(Long dataId, String payType);
    public NonCoalStuRep queryOrder(Long dataId, String payType);
    /**
     * 新增【请填写功能名称】
@@ -44,6 +53,10 @@
     */
    public int updateNonCoalPayStudent(NonCoalPayStudent nonCoalPayStudent);
    int updateNonCoalStu(NonCoalPayStudentReqDto nonCoalPayStudent);
    void checkHavePayData(Long nonPayId);
    /**
     * 批量删除【请填写功能名称】
     *
@@ -59,4 +72,6 @@
     * @return 结果
     */
    public int deleteNonCoalPayStudentById(Long id);
    public String importData(List<NonCoalPayStuImport> nonCoalPayStudents, String operName, Long nonCoalPayId);
}