From 933ee70c42092a600696428cefd178de805d0439 Mon Sep 17 00:00:00 2001
From: wanghc <2466022993@qq.com>
Date: Tue, 27 Jun 2023 12:46:38 +0800
Subject: [PATCH] 打包方式修改为lib,添加启动脚本
---
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspTranQryType.java | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspTranQryType.java b/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspTranQryType.java
index fe9b11c..4bcf1e0 100644
--- a/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspTranQryType.java
+++ b/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspTranQryType.java
@@ -5,6 +5,7 @@
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
+import java.io.Serializable;
/**
@@ -90,7 +91,8 @@
"rspSvcHeader",
"svcBody"
})
-public class RspTranQryType {
+public class RspTranQryType implements Serializable {
+ private static final long serialVersionUID = 1L;
@XmlElement(name = "RspSvcHeader", required = true)
protected RspSvcHeaderType rspSvcHeader;
@@ -265,7 +267,8 @@
"rsrvFldVal2",
"trdStInfo"
})
- public static class SvcBody {
+ public static class SvcBody implements Serializable {
+ private static final long serialVersionUID = 1L;
@XmlElement(name = "BussRetCd", required = true)
protected String bussRetCd;
--
Gitblit v1.8.0