From ce5853e8e540693421c86e32a050d8a2e214198a Mon Sep 17 00:00:00 2001
From: heheng <heheng@123456>
Date: Wed, 05 Feb 2025 09:26:06 +0800
Subject: [PATCH] 增加查询是否生成财政缴款码
---
exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/NonCoalStuRep.java | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/NonCoalStuRep.java b/exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/NonCoalStuRep.java
index b42ba0d..0d1f7ab 100644
--- a/exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/NonCoalStuRep.java
+++ b/exam-system/src/main/java/com/gkhy/exam/pay/dto/rep/NonCoalStuRep.java
@@ -1,9 +1,11 @@
package com.gkhy.exam.pay.dto.rep;
+import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
+@ApiModel(value = "缴费学员相关信息")
public class NonCoalStuRep {
private Long id;
@@ -43,4 +45,10 @@
@ApiModelProperty("财政订单编号")
private String orderId;
+
+ @ApiModelProperty("订单编号")
+ private String orderNo;
+
+ @ApiModelProperty("财政订单状态0未生成1生成中2已生成")
+ private Long govPayStatus;
}
--
Gitblit v1.9.2