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/ArrayOfOAWorkflowRequestTableField.java | 69 ++++++++++++++++++++++++++++++++++ 1 files changed, 69 insertions(+), 0 deletions(-) diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/oa/ArrayOfOAWorkflowRequestTableField.java b/ruoyi-common/src/main/java/com/ruoyi/common/oa/ArrayOfOAWorkflowRequestTableField.java new file mode 100644 index 0000000..85b40a7 --- /dev/null +++ b/ruoyi-common/src/main/java/com/ruoyi/common/oa/ArrayOfOAWorkflowRequestTableField.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_WorkflowRequestTableField complex type鐨� Java 绫汇�� + * + * <p>浠ヤ笅妯″紡鐗囨鎸囧畾鍖呭惈鍦ㄦ绫讳腑鐨勯鏈熷唴瀹广�� + * + * <pre> + * <complexType name="ArrayOfOA_WorkflowRequestTableField"> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="OA_WorkflowRequestTableField" type="{http://tempuri.org/}OA_WorkflowRequestTableField" maxOccurs="unbounded" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + * </pre> + * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "ArrayOfOA_WorkflowRequestTableField", propOrder = { + "oaWorkflowRequestTableField" +}) +public class ArrayOfOAWorkflowRequestTableField { + + @XmlElement(name = "OA_WorkflowRequestTableField", nillable = true) + protected List<OAWorkflowRequestTableField> oaWorkflowRequestTableField; + + /** + * Gets the value of the oaWorkflowRequestTableField 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 oaWorkflowRequestTableField property. + * + * <p> + * For example, to add a new item, do as follows: + * <pre> + * getOAWorkflowRequestTableField().add(newItem); + * </pre> + * + * + * <p> + * Objects of the following type(s) are allowed in the list + * {@link OAWorkflowRequestTableField } + * + * + */ + public List<OAWorkflowRequestTableField> getOAWorkflowRequestTableField() { + if (oaWorkflowRequestTableField == null) { + oaWorkflowRequestTableField = new ArrayList<OAWorkflowRequestTableField>(); + } + return this.oaWorkflowRequestTableField; + } + +} -- Gitblit v1.9.3