From 4f3a98f19143865cdc1de4791e8a95d96bd40c65 Mon Sep 17 00:00:00 2001
From: maven <2163098428@qq.com>
Date: 星期五, 01 八月 2025 13:27:59 +0800
Subject: [PATCH] yys 密码已重置

---
 ruoyi-common/src/main/java/com/ruoyi/common/oa/ArrayOfOAWorkflowRequestTableRecord.java |   69 ++++++++++++++++++++++++++++++++++
 1 files changed, 69 insertions(+), 0 deletions(-)

diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/oa/ArrayOfOAWorkflowRequestTableRecord.java b/ruoyi-common/src/main/java/com/ruoyi/common/oa/ArrayOfOAWorkflowRequestTableRecord.java
new file mode 100644
index 0000000..b59406d
--- /dev/null
+++ b/ruoyi-common/src/main/java/com/ruoyi/common/oa/ArrayOfOAWorkflowRequestTableRecord.java
@@ -0,0 +1,69 @@
+
+package com.ruoyi.common.oa;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+import java.util.ArrayList;
+import java.util.List;
+
+
+/**
+ * <p>ArrayOfOA_WorkflowRequestTableRecord complex type鐨� Java 绫汇��
+ *
+ * <p>浠ヤ笅妯″紡鐗囨鎸囧畾鍖呭惈鍦ㄦ绫讳腑鐨勯鏈熷唴瀹广��
+ *
+ * <pre>
+ * &lt;complexType name="ArrayOfOA_WorkflowRequestTableRecord">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="OA_WorkflowRequestTableRecord" type="{http://tempuri.org/}OA_WorkflowRequestTableRecord" maxOccurs="unbounded" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ArrayOfOA_WorkflowRequestTableRecord", propOrder = {
+    "oaWorkflowRequestTableRecord"
+})
+public class ArrayOfOAWorkflowRequestTableRecord {
+
+    @XmlElement(name = "OA_WorkflowRequestTableRecord", nillable = true)
+    protected List<OAWorkflowRequestTableRecord> oaWorkflowRequestTableRecord;
+
+    /**
+     * Gets the value of the oaWorkflowRequestTableRecord property.
+     *
+     * <p>
+     * This accessor method returns a reference to the live list,
+     * not a snapshot. Therefore any modification you make to the
+     * returned list will be present inside the JAXB object.
+     * This is why there is not a <CODE>set</CODE> method for the oaWorkflowRequestTableRecord property.
+     *
+     * <p>
+     * For example, to add a new item, do as follows:
+     * <pre>
+     *    getOAWorkflowRequestTableRecord().add(newItem);
+     * </pre>
+     *
+     *
+     * <p>
+     * Objects of the following type(s) are allowed in the list
+     * {@link OAWorkflowRequestTableRecord }
+     *
+     *
+     */
+    public List<OAWorkflowRequestTableRecord> getOAWorkflowRequestTableRecord() {
+        if (oaWorkflowRequestTableRecord == null) {
+            oaWorkflowRequestTableRecord = new ArrayList<OAWorkflowRequestTableRecord>();
+        }
+        return this.oaWorkflowRequestTableRecord;
+    }
+
+}

--
Gitblit v1.9.3