From 2d381e3822a5c2d12632bac45d44deb0b41729cf Mon Sep 17 00:00:00 2001
From: wanghc <2466022993@qq.com>
Date: Tue, 27 Jun 2023 13:28:24 +0800
Subject: [PATCH] 日志记录位置修改
---
cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspEPCSnglTranType.java | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspEPCSnglTranType.java b/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspEPCSnglTranType.java
index 0872e12..060f143 100644
--- a/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspEPCSnglTranType.java
+++ b/cmci-pfcs-gateway/src/main/java/com/jttech/pfcs/vo/resp/trade/RspEPCSnglTranType.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;
/**
@@ -58,7 +59,9 @@
"rspSvcHeader",
"svcBody"
})
-public class RspEPCSnglTranType {
+public class RspEPCSnglTranType implements Serializable {
+
+ private static final long serialVersionUID = 1L;
@XmlElement(name = "RspSvcHeader", required = true)
protected RspSvcHeaderType rspSvcHeader;
@@ -169,7 +172,8 @@
"rsrvFldVal5",
"rsrvFldVal6"
})
- public static class SvcBody {
+ public static class SvcBody implements Serializable {
+ private static final long serialVersionUID = 1L;
@XmlElement(name = "PcsStatus1", required = true)
protected String pcsStatus1;
--
Gitblit v1.8.0