教育训练处考试制证系统后端
“djh”
2025-01-24 5a88c770debe086dd82ab5ce8a4c957a3debdae7
exam-system/src/main/java/com/gkhy/exam/pay/service/NonCoalPayStudentService.java
@@ -1,6 +1,8 @@
package com.gkhy.exam.pay.service;
import com.baomidou.mybatisplus.extension.service.IService;
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 +22,7 @@
     */
    public NonCoalPayStudent selectNonCoalPayStudentById(Long id);
    /**
     * 查询【请填写功能名称】列表
     *
@@ -27,6 +30,8 @@
     * @return 【请填写功能名称】集合
     */
    public List<NonCoalPayStudent> selectNonCoalPayStudentList(NonCoalPayStudent nonCoalPayStudent);
    public String sendOrder(Long dataId, String payType);
    /**
     * 新增【请填写功能名称】
@@ -44,6 +49,10 @@
     */
    public int updateNonCoalPayStudent(NonCoalPayStudent nonCoalPayStudent);
    int updateNonCoalStu(NonCoalPayStudentReqDto nonCoalPayStudent);
    void checkHavePayData(Long nonPayId);
    /**
     * 批量删除【请填写功能名称】
     *
@@ -59,4 +68,6 @@
     * @return 结果
     */
    public int deleteNonCoalPayStudentById(Long id);
    public String importData(List<NonCoalPayStuImport> nonCoalPayStudents, String operName, Long nonCoalPayId);
}