From bc472feefdfc4afbcb0fcd35a8fb8d047edf6a9f Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: Tue, 18 Feb 2025 16:50:30 +0800
Subject: [PATCH] 煤矿缴费修改
---
exam-system/src/main/java/com/gkhy/exam/pay/service/NonCoalPayService.java | 26 +++++++++++++++++++++-----
1 files changed, 21 insertions(+), 5 deletions(-)
diff --git a/exam-system/src/main/java/com/gkhy/exam/pay/service/NonCoalPayService.java b/exam-system/src/main/java/com/gkhy/exam/pay/service/NonCoalPayService.java
index 8afd2fb..a039ba2 100644
--- a/exam-system/src/main/java/com/gkhy/exam/pay/service/NonCoalPayService.java
+++ b/exam-system/src/main/java/com/gkhy/exam/pay/service/NonCoalPayService.java
@@ -1,8 +1,15 @@
package com.gkhy.exam.pay.service;
-import java.util.List;
import com.baomidou.mybatisplus.extension.service.IService;
+import com.gkhy.exam.pay.dto.rep.NonCoalPayDetailH5RepDto;
+import com.gkhy.exam.pay.dto.rep.NonCoalPayDetailRepDto;
+import com.gkhy.exam.pay.dto.rep.NonCoalPayPageRepDto;
+import com.gkhy.exam.pay.dto.rep.NonCoalPayStudentDetailRepDto;
+import com.gkhy.exam.pay.dto.req.NonCoalPayReqDto;
+import com.gkhy.exam.pay.dto.req.NonCoalPayTypeEditReqDto;
import com.gkhy.exam.pay.entity.NonCoalPay;
+
+import java.util.List;
/**
* 【请填写功能名称】Service接口
@@ -17,7 +24,10 @@
* @param id 【请填写功能名称】主键
* @return 【请填写功能名称】
*/
- public NonCoalPay selectNonCoalPayById(Long id);
+ public NonCoalPayDetailRepDto selectNonCoalPayById(Long id);
+
+
+ List<NonCoalPayDetailH5RepDto> selectNonCoalPayByStu(String phone, String idCard);
/**
* 查询【请填写功能名称】列表
@@ -25,7 +35,9 @@
* @param nonCoalPay 【请填写功能名称】
* @return 【请填写功能名称】集合
*/
- public List<NonCoalPay> selectNonCoalPayList(NonCoalPay nonCoalPay);
+ public List<NonCoalPayPageRepDto> selectNonCoalPayList(NonCoalPay nonCoalPay);
+
+ NonCoalPayStudentDetailRepDto getNonCoalPayStudentByPayId(Long id);
/**
* 新增【请填写功能名称】
@@ -33,7 +45,7 @@
* @param nonCoalPay 【请填写功能名称】
* @return 结果
*/
- public int insertNonCoalPay(NonCoalPay nonCoalPay);
+ public int insertNonCoalPay(NonCoalPayReqDto nonCoalPay);
/**
* 修改【请填写功能名称】
@@ -41,7 +53,11 @@
* @param nonCoalPay 【请填写功能名称】
* @return 结果
*/
- public int updateNonCoalPay(NonCoalPay nonCoalPay);
+ public int updateNonCoalPay(NonCoalPayReqDto nonCoalPay);
+
+ public int updateNonCoalPayType(NonCoalPayTypeEditReqDto nonCoalPay);
+
+ public int updateNonCoalPayTypeStatus(int payPersonType, Long id);
/**
* 批量删除【请填写功能名称】
--
Gitblit v1.9.2