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/OAWorkflowRequestInfo.java |  254 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 254 insertions(+), 0 deletions(-)

diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/oa/OAWorkflowRequestInfo.java b/ruoyi-common/src/main/java/com/ruoyi/common/oa/OAWorkflowRequestInfo.java
new file mode 100644
index 0000000..f7c585e
--- /dev/null
+++ b/ruoyi-common/src/main/java/com/ruoyi/common/oa/OAWorkflowRequestInfo.java
@@ -0,0 +1,254 @@
+
+package com.ruoyi.common.oa;
+
+import lombok.Data;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>OA_WorkflowRequestInfo complex type鐨� Java 绫汇��
+ *
+ * <p>浠ヤ笅妯″紡鐗囨鎸囧畾鍖呭惈鍦ㄦ绫讳腑鐨勯鏈熷唴瀹广��
+ *
+ * <pre>
+ * &lt;complexType name="OA_WorkflowRequestInfo">
+ *   &lt;complexContent>
+ *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ *       &lt;sequence>
+ *         &lt;element name="WorkflowId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="RequestId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="MainId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="CreaterId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="RequestLevel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="RequestName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="Remark" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ *         &lt;element name="WorkflowMainTable" type="{http://tempuri.org/}OA_WorkflowTable" minOccurs="0"/>
+ *         &lt;element name="WorkflowDetailTables" type="{http://tempuri.org/}ArrayOfOA_WorkflowTable" minOccurs="0"/>
+ *       &lt;/sequence>
+ *     &lt;/restriction>
+ *   &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "OA_WorkflowRequestInfo", propOrder = {
+		"workflowId",
+		"requestId",
+		"mainId",
+		"createrId",
+		"requestLevel",
+		"requestName",
+		"remark",
+		"isnextflow",
+		"workflowMainTable",
+		"workflowDetailTables"
+})
+@Data
+public class OAWorkflowRequestInfo {
+
+	@XmlElement(name = "WorkflowId")
+	protected String workflowId;
+	@XmlElement(name = "RequestId")
+	protected String requestId;
+	@XmlElement(name = "MainId")
+	protected String mainId;
+	@XmlElement(name = "CreaterId")
+	protected String createrId;
+	@XmlElement(name = "RequestLevel")
+	protected String requestLevel;
+	@XmlElement(name = "RequestName")
+	protected String requestName;
+	@XmlElement(name = "Remark")
+	protected String remark;
+	@XmlElement(name = "isnextflow")
+	protected String isnextflow;
+	@XmlElement(name = "WorkflowMainTable")
+	protected OAWorkflowTable workflowMainTable;
+	@XmlElement(name = "WorkflowDetailTables")
+	protected ArrayOfOAWorkflowTable workflowDetailTables;
+
+	/**
+	 * 鑾峰彇workflowId灞炴�х殑鍊笺��
+	 *
+	 * @return possible object is
+	 * {@link String }
+	 */
+	public String getWorkflowId() {
+		return workflowId;
+	}
+
+	/**
+	 * 璁剧疆workflowId灞炴�х殑鍊笺��
+	 *
+	 * @param value allowed object is
+	 *              {@link String }
+	 */
+	public void setWorkflowId(String value) {
+		this.workflowId = value;
+	}
+
+	/**
+	 * 鑾峰彇requestId灞炴�х殑鍊笺��
+	 *
+	 * @return possible object is
+	 * {@link String }
+	 */
+	public String getRequestId() {
+		return requestId;
+	}
+
+	/**
+	 * 璁剧疆requestId灞炴�х殑鍊笺��
+	 *
+	 * @param value allowed object is
+	 *              {@link String }
+	 */
+	public void setRequestId(String value) {
+		this.requestId = value;
+	}
+
+	/**
+	 * 鑾峰彇mainId灞炴�х殑鍊笺��
+	 *
+	 * @return possible object is
+	 * {@link String }
+	 */
+	public String getMainId() {
+		return mainId;
+	}
+
+	/**
+	 * 璁剧疆mainId灞炴�х殑鍊笺��
+	 *
+	 * @param value allowed object is
+	 *              {@link String }
+	 */
+	public void setMainId(String value) {
+		this.mainId = value;
+	}
+
+	/**
+	 * 鑾峰彇createrId灞炴�х殑鍊笺��
+	 *
+	 * @return possible object is
+	 * {@link String }
+	 */
+	public String getCreaterId() {
+		return createrId;
+	}
+
+	/**
+	 * 璁剧疆createrId灞炴�х殑鍊笺��
+	 *
+	 * @param value allowed object is
+	 *              {@link String }
+	 */
+	public void setCreaterId(String value) {
+		this.createrId = value;
+	}
+
+	/**
+	 * 鑾峰彇requestLevel灞炴�х殑鍊笺��
+	 *
+	 * @return possible object is
+	 * {@link String }
+	 */
+	public String getRequestLevel() {
+		return requestLevel;
+	}
+
+	/**
+	 * 璁剧疆requestLevel灞炴�х殑鍊笺��
+	 *
+	 * @param value allowed object is
+	 *              {@link String }
+	 */
+	public void setRequestLevel(String value) {
+		this.requestLevel = value;
+	}
+
+	/**
+	 * 鑾峰彇requestName灞炴�х殑鍊笺��
+	 *
+	 * @return possible object is
+	 * {@link String }
+	 */
+	public String getRequestName() {
+		return requestName;
+	}
+
+	/**
+	 * 璁剧疆requestName灞炴�х殑鍊笺��
+	 *
+	 * @param value allowed object is
+	 *              {@link String }
+	 */
+	public void setRequestName(String value) {
+		this.requestName = value;
+	}
+
+	/**
+	 * 鑾峰彇remark灞炴�х殑鍊笺��
+	 *
+	 * @return possible object is
+	 * {@link String }
+	 */
+	public String getRemark() {
+		return remark;
+	}
+
+	/**
+	 * 璁剧疆remark灞炴�х殑鍊笺��
+	 *
+	 * @param value allowed object is
+	 *              {@link String }
+	 */
+	public void setRemark(String value) {
+		this.remark = value;
+	}
+
+	/**
+	 * 鑾峰彇workflowMainTable灞炴�х殑鍊笺��
+	 *
+	 * @return possible object is
+	 * {@link OAWorkflowTable }
+	 */
+	public OAWorkflowTable getWorkflowMainTable() {
+		return workflowMainTable;
+	}
+
+	/**
+	 * 璁剧疆workflowMainTable灞炴�х殑鍊笺��
+	 *
+	 * @param value allowed object is
+	 *              {@link OAWorkflowTable }
+	 */
+	public void setWorkflowMainTable(OAWorkflowTable value) {
+		this.workflowMainTable = value;
+	}
+
+	/**
+	 * 鑾峰彇workflowDetailTables灞炴�х殑鍊笺��
+	 *
+	 * @return possible object is
+	 * {@link ArrayOfOAWorkflowTable }
+	 */
+	public ArrayOfOAWorkflowTable getWorkflowDetailTables() {
+		return workflowDetailTables;
+	}
+
+	/**
+	 * 璁剧疆workflowDetailTables灞炴�х殑鍊笺��
+	 *
+	 * @param value allowed object is
+	 *              {@link ArrayOfOAWorkflowTable }
+	 */
+	public void setWorkflowDetailTables(ArrayOfOAWorkflowTable value) {
+		this.workflowDetailTables = value;
+	}
+
+}

--
Gitblit v1.9.3