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/ForwardWorkflowRequest.java | 154 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 154 insertions(+), 0 deletions(-) diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/oa/ForwardWorkflowRequest.java b/ruoyi-common/src/main/java/com/ruoyi/common/oa/ForwardWorkflowRequest.java new file mode 100644 index 0000000..a9d7a36 --- /dev/null +++ b/ruoyi-common/src/main/java/com/ruoyi/common/oa/ForwardWorkflowRequest.java @@ -0,0 +1,154 @@ + +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="requestid" type="{http://www.w3.org/2001/XMLSchema}int"/> + * <element name="forwardoperator" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="remark" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * <element name="userId" type="{http://www.w3.org/2001/XMLSchema}int"/> + * <element name="clientip" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> + * </sequence> + * </restriction> + * </complexContent> + * </complexType> + * </pre> + * + * + */ +@XmlAccessorType(XmlAccessType.FIELD) +@XmlType(name = "", propOrder = { + "requestid", + "forwardoperator", + "remark", + "userId", + "clientip" +}) +@XmlRootElement(name = "forwardWorkflowRequest") +public class ForwardWorkflowRequest { + + protected int requestid; + protected String forwardoperator; + protected String remark; + protected int userId; + protected String clientip; + + /** + * 鑾峰彇requestid灞炴�х殑鍊笺�� + * + */ + public int getRequestid() { + return requestid; + } + + /** + * 璁剧疆requestid灞炴�х殑鍊笺�� + * + */ + public void setRequestid(int value) { + this.requestid = value; + } + + /** + * 鑾峰彇forwardoperator灞炴�х殑鍊笺�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getForwardoperator() { + return forwardoperator; + } + + /** + * 璁剧疆forwardoperator灞炴�х殑鍊笺�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setForwardoperator(String value) { + this.forwardoperator = 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; + } + + /** + * 鑾峰彇userId灞炴�х殑鍊笺�� + * + */ + public int getUserId() { + return userId; + } + + /** + * 璁剧疆userId灞炴�х殑鍊笺�� + * + */ + public void setUserId(int value) { + this.userId = value; + } + + /** + * 鑾峰彇clientip灞炴�х殑鍊笺�� + * + * @return + * possible object is + * {@link String } + * + */ + public String getClientip() { + return clientip; + } + + /** + * 璁剧疆clientip灞炴�х殑鍊笺�� + * + * @param value + * allowed object is + * {@link String } + * + */ + public void setClientip(String value) { + this.clientip = value; + } + +} -- Gitblit v1.9.3