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/AddWorkflow.java | 143 +++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 143 insertions(+), 0 deletions(-) diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/oa/AddWorkflow.java b/ruoyi-common/src/main/java/com/ruoyi/common/oa/AddWorkflow.java new file mode 100644 index 0000000..aad7df1 --- /dev/null +++ b/ruoyi-common/src/main/java/com/ruoyi/common/oa/AddWorkflow.java @@ -0,0 +1,143 @@ + +package com.ruoyi.common.oa; + +import javax.xml.bind.annotation.XmlAccessType; +import javax.xml.bind.annotation.XmlAccessorType; +import javax.xml.bind.annotation.XmlRootElement; +import javax.xml.bind.annotation.XmlType; + + +/** + * <p>anonymous complex type鐨� Java 绫汇�� + * + * <p>浠ヤ笅妯″紡鐗囨鎸囧畾鍖呭惈鍦ㄦ绫讳腑鐨勯鏈熷唴瀹广�� + * + * <pre> + * <complexType> + * <complexContent> + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> + * <sequence> + * <element name="appKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="wri" type="{http://tempuri.org/}OA_WorkflowRequestInfo" minOccurs="0"/> + * <element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="errorMsg" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + * </pre> + * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "appKey", + "wri", + "errorCode", + "errorMsg" +}) +@XmlRootElement(name = "AddWorkflow") +public class AddWorkflow { + + protected String appKey; + protected OAWorkflowRequestInfo wri; + protected String errorCode; + protected String errorMsg; + + /** + * 鑾峰彇appKey灞炴�х殑鍊笺�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getAppKey() { + return appKey; + } + + /** + * 璁剧疆appKey灞炴�х殑鍊笺�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setAppKey(String value) { + this.appKey = value; + } + + /** + * 鑾峰彇wri灞炴�х殑鍊笺�� + * + * @return + * possible object is + * {@link OAWorkflowRequestInfo } + * + */ + public OAWorkflowRequestInfo getWri() { + return wri; + } + + /** + * 璁剧疆wri灞炴�х殑鍊笺�� + * + * @param value + * allowed object is + * {@link OAWorkflowRequestInfo } + * + */ + public void setWri(OAWorkflowRequestInfo value) { + this.wri = value; + } + + /** + * 鑾峰彇errorCode灞炴�х殑鍊笺�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getErrorCode() { + return errorCode; + } + + /** + * 璁剧疆errorCode灞炴�х殑鍊笺�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setErrorCode(String value) { + this.errorCode = value; + } + + /** + * 鑾峰彇errorMsg灞炴�х殑鍊笺�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getErrorMsg() { + return errorMsg; + } + + /** + * 璁剧疆errorMsg灞炴�х殑鍊笺�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setErrorMsg(String value) { + this.errorMsg = value; + } + +} -- Gitblit v1.9.3