From 376c1f1782fda955d0344dbcc1305dd5fb750448 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期二, 10 六月 2025 17:30:41 +0800
Subject: [PATCH] 代码提交

---
 jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/webservice/ws/JHFWreq.java |   95 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 95 insertions(+), 0 deletions(-)

diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/webservice/ws/JHFWreq.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/webservice/ws/JHFWreq.java
new file mode 100644
index 0000000..363d257
--- /dev/null
+++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/webservice/ws/JHFWreq.java
@@ -0,0 +1,95 @@
+
+package cn.lihu.jh.module.ecg.webservice.ws;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlType;
+
+
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "JHFWreq", propOrder = {
+    "action",
+    "rdn",
+    "message"
+})
+public class JHFWreq
+    extends EnsRequest
+{
+
+    protected String action;
+    protected String rdn;
+    protected String message;
+
+    /**
+     * 锟斤拷取action锟斤拷锟皆碉拷值锟斤拷
+     *
+     * @return
+     *     possible object is
+     *     {@link String }
+     *
+     */
+    public String getAction() {
+        return action;
+    }
+
+    /**
+     * 锟斤拷锟斤拷action锟斤拷锟皆碉拷值锟斤拷
+     *
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *
+     */
+    public void setAction(String value) {
+        this.action = value;
+    }
+
+    /**
+     * 锟斤拷取rdn锟斤拷锟皆碉拷值锟斤拷
+     *
+     * @return
+     *     possible object is
+     *     {@link String }
+     *
+     */
+    public String getRdn() {
+        return rdn;
+    }
+
+    /**
+     * 锟斤拷锟斤拷rdn锟斤拷锟皆碉拷值锟斤拷
+     *
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *
+     */
+    public void setRdn(String value) {
+        this.rdn = value;
+    }
+
+    /**
+     * 锟斤拷取message锟斤拷锟皆碉拷值锟斤拷
+     *
+     * @return
+     *     possible object is
+     *     {@link String }
+     *
+     */
+    public String getMessage() {
+        return message;
+    }
+
+    /**
+     * 锟斤拷锟斤拷message锟斤拷锟皆碉拷值锟斤拷
+     *
+     * @param value
+     *     allowed object is
+     *     {@link String }
+     *
+     */
+    public void setMessage(String value) {
+        this.message = value;
+    }
+
+}

--
Gitblit v1.9.3