Commit b9ea9410 authored by 李志平's avatar 李志平

添加oa客户端调用接口代码

parent e59da0e1
Pipeline #4213 failed with stages
......@@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.3</version>
<version>2.1.6.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
......@@ -152,6 +152,16 @@
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<configuration>
<delimiters>
<delimiter>@</delimiter>
</delimiters>
<useDefaultDelimiters>false</useDefaultDelimiters>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
......
......@@ -5,10 +5,10 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
@EnableDiscoveryClient
@SpringBootApplication
public class SpringbootbemoApplication {
public class Application {
public static void main(String[] args) {
SpringApplication.run(SpringbootbemoApplication.class, args);
SpringApplication.run(Application.class, args);
}
}
package com.dianmi.ws;
import java.util.ArrayList;
import java.util.List;
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>ArrayOfArrayOfString complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="ArrayOfArrayOfString"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="ArrayOfString" type="{webservices.services.weaver.com.cn}ArrayOfString" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfArrayOfString", propOrder = {
"arrayOfString"
})
public class ArrayOfArrayOfString {
@XmlElement(name = "ArrayOfString", nillable = true)
protected List<ArrayOfString> arrayOfString;
/**
* Gets the value of the arrayOfString 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 arrayOfString property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getArrayOfString().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link ArrayOfString }
*
*
*/
public List<ArrayOfString> getArrayOfString() {
if (arrayOfString == null) {
arrayOfString = new ArrayList<ArrayOfString>();
}
return this.arrayOfString;
}
}
package com.dianmi.ws;
import java.util.ArrayList;
import java.util.List;
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>ArrayOfString complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="ArrayOfString"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="string" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfString", propOrder = {
"string"
})
public class ArrayOfString {
@XmlElement(nillable = true)
protected List<String> string;
/**
* Gets the value of the string 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 string property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getString().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List<String> getString() {
if (string == null) {
string = new ArrayList<String>();
}
return this.string;
}
}
package com.dianmi.ws;
import java.util.ArrayList;
import java.util.List;
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>ArrayOfWorkflowBaseInfo complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="ArrayOfWorkflowBaseInfo"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="WorkflowBaseInfo" type="{http://webservices.workflow.weaver}WorkflowBaseInfo" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfWorkflowBaseInfo", namespace = "http://webservices.workflow.weaver", propOrder = {
"workflowBaseInfo"
})
public class ArrayOfWorkflowBaseInfo {
@XmlElement(name = "WorkflowBaseInfo", nillable = true)
protected List<WorkflowBaseInfo> workflowBaseInfo;
/**
* Gets the value of the workflowBaseInfo 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 workflowBaseInfo property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getWorkflowBaseInfo().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link WorkflowBaseInfo }
*
*
*/
public List<WorkflowBaseInfo> getWorkflowBaseInfo() {
if (workflowBaseInfo == null) {
workflowBaseInfo = new ArrayList<WorkflowBaseInfo>();
}
return this.workflowBaseInfo;
}
}
package com.dianmi.ws;
import java.util.ArrayList;
import java.util.List;
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>ArrayOfWorkflowDetailTableInfo complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="ArrayOfWorkflowDetailTableInfo"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="WorkflowDetailTableInfo" type="{http://webservices.workflow.weaver}WorkflowDetailTableInfo" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfWorkflowDetailTableInfo", namespace = "http://webservices.workflow.weaver", propOrder = {
"workflowDetailTableInfo"
})
public class ArrayOfWorkflowDetailTableInfo {
@XmlElement(name = "WorkflowDetailTableInfo", nillable = true)
protected List<WorkflowDetailTableInfo> workflowDetailTableInfo;
/**
* Gets the value of the workflowDetailTableInfo 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 workflowDetailTableInfo property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getWorkflowDetailTableInfo().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link WorkflowDetailTableInfo }
*
*
*/
public List<WorkflowDetailTableInfo> getWorkflowDetailTableInfo() {
if (workflowDetailTableInfo == null) {
workflowDetailTableInfo = new ArrayList<WorkflowDetailTableInfo>();
}
return this.workflowDetailTableInfo;
}
}
package com.dianmi.ws;
import java.util.ArrayList;
import java.util.List;
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>ArrayOfWorkflowRequestInfo complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="ArrayOfWorkflowRequestInfo"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="WorkflowRequestInfo" type="{http://webservices.workflow.weaver}WorkflowRequestInfo" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfWorkflowRequestInfo", namespace = "http://webservices.workflow.weaver", propOrder = {
"workflowRequestInfo"
})
public class ArrayOfWorkflowRequestInfo {
@XmlElement(name = "WorkflowRequestInfo", nillable = true)
protected List<WorkflowRequestInfo> workflowRequestInfo;
/**
* Gets the value of the workflowRequestInfo 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 workflowRequestInfo property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getWorkflowRequestInfo().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link WorkflowRequestInfo }
*
*
*/
public List<WorkflowRequestInfo> getWorkflowRequestInfo() {
if (workflowRequestInfo == null) {
workflowRequestInfo = new ArrayList<WorkflowRequestInfo>();
}
return this.workflowRequestInfo;
}
}
package com.dianmi.ws;
import java.util.ArrayList;
import java.util.List;
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>ArrayOfWorkflowRequestLog complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="ArrayOfWorkflowRequestLog"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="WorkflowRequestLog" type="{http://webservices.workflow.weaver}WorkflowRequestLog" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfWorkflowRequestLog", namespace = "http://webservices.workflow.weaver", propOrder = {
"workflowRequestLog"
})
public class ArrayOfWorkflowRequestLog {
@XmlElement(name = "WorkflowRequestLog", nillable = true)
protected List<WorkflowRequestLog> workflowRequestLog;
/**
* Gets the value of the workflowRequestLog 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 workflowRequestLog property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getWorkflowRequestLog().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link WorkflowRequestLog }
*
*
*/
public List<WorkflowRequestLog> getWorkflowRequestLog() {
if (workflowRequestLog == null) {
workflowRequestLog = new ArrayList<WorkflowRequestLog>();
}
return this.workflowRequestLog;
}
}
package com.dianmi.ws;
import java.util.ArrayList;
import java.util.List;
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>ArrayOfWorkflowRequestTableField complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="ArrayOfWorkflowRequestTableField"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="WorkflowRequestTableField" type="{http://webservices.workflow.weaver}WorkflowRequestTableField" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfWorkflowRequestTableField", namespace = "http://webservices.workflow.weaver", propOrder = {
"workflowRequestTableField"
})
public class ArrayOfWorkflowRequestTableField {
@XmlElement(name = "WorkflowRequestTableField", nillable = true)
protected List<WorkflowRequestTableField> workflowRequestTableField;
/**
* Gets the value of the workflowRequestTableField 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 workflowRequestTableField property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getWorkflowRequestTableField().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link WorkflowRequestTableField }
*
*
*/
public List<WorkflowRequestTableField> getWorkflowRequestTableField() {
if (workflowRequestTableField == null) {
workflowRequestTableField = new ArrayList<WorkflowRequestTableField>();
}
return this.workflowRequestTableField;
}
}
package com.dianmi.ws;
import java.util.ArrayList;
import java.util.List;
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>ArrayOfWorkflowRequestTableRecord complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType name="ArrayOfWorkflowRequestTableRecord"&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="WorkflowRequestTableRecord" type="{http://webservices.workflow.weaver}WorkflowRequestTableRecord" maxOccurs="unbounded" minOccurs="0"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOfWorkflowRequestTableRecord", namespace = "http://webservices.workflow.weaver", propOrder = {
"workflowRequestTableRecord"
})
public class ArrayOfWorkflowRequestTableRecord {
@XmlElement(name = "WorkflowRequestTableRecord", nillable = true)
protected List<WorkflowRequestTableRecord> workflowRequestTableRecord;
/**
* Gets the value of the workflowRequestTableRecord 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 workflowRequestTableRecord property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getWorkflowRequestTableRecord().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link WorkflowRequestTableRecord }
*
*
*/
public List<WorkflowRequestTableRecord> getWorkflowRequestTableRecord() {
if (workflowRequestTableRecord == null) {
workflowRequestTableRecord = new ArrayList<WorkflowRequestTableRecord>();
}
return this.workflowRequestTableRecord;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "deleteRequest")
public class DeleteRequest {
protected int in0;
protected int in1;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "deleteRequestResponse")
public class DeleteRequestResponse {
protected boolean out;
/**
* 获取out属性的值。
*
*/
public boolean isOut() {
return out;
}
/**
* 设置out属性的值。
*
*/
public void setOut(boolean value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://webservices.workflow.weaver}WorkflowRequestInfo"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "doCreateRequest")
public class DoCreateRequest {
@XmlElement(required = true, nillable = true)
protected WorkflowRequestInfo in0;
protected int in1;
/**
* 获取in0属性的值。
*
* @return
* possible object is
* {@link WorkflowRequestInfo }
*
*/
public WorkflowRequestInfo getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
* @param value
* allowed object is
* {@link WorkflowRequestInfo }
*
*/
public void setIn0(WorkflowRequestInfo value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "doCreateRequestResponse")
public class DoCreateRequestResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://webservices.workflow.weaver}WorkflowRequestInfo"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "doCreateWorkflowRequest")
public class DoCreateWorkflowRequest {
@XmlElement(required = true, nillable = true)
protected WorkflowRequestInfo in0;
protected int in1;
/**
* 获取in0属性的值。
*
* @return
* possible object is
* {@link WorkflowRequestInfo }
*
*/
public WorkflowRequestInfo getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
* @param value
* allowed object is
* {@link WorkflowRequestInfo }
*
*/
public void setIn0(WorkflowRequestInfo value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "doCreateWorkflowRequestResponse")
public class DoCreateWorkflowRequestResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "doForceOver")
public class DoForceOver {
protected int in0;
protected int in1;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "doForceOverResponse")
public class DoForceOverResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in4" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3",
"in4"
})
@XmlRootElement(name = "forward2WorkflowRequest")
public class Forward2WorkflowRequest {
protected int in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
protected int in3;
@XmlElement(required = true, nillable = true)
protected String in4;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
/**
* 获取in3属性的值。
*
*/
public int getIn3() {
return in3;
}
/**
* 设置in3属性的值。
*
*/
public void setIn3(int value) {
this.in3 = value;
}
/**
* 获取in4属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn4() {
return in4;
}
/**
* 设置in4属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn4(String value) {
this.in4 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "forward2WorkflowRequestResponse")
public class Forward2WorkflowRequestResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in4" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3",
"in4"
})
@XmlRootElement(name = "forwardWorkflowRequest")
public class ForwardWorkflowRequest {
protected int in0;
@XmlElement(required = true, nillable = true)
protected String in1;
@XmlElement(required = true, nillable = true)
protected String in2;
protected int in3;
@XmlElement(required = true, nillable = true)
protected String in4;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn1(String value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn2(String value) {
this.in2 = value;
}
/**
* 获取in3属性的值。
*
*/
public int getIn3() {
return in3;
}
/**
* 设置in3属性的值。
*
*/
public void setIn3(int value) {
this.in3 = value;
}
/**
* 获取in4属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getIn4() {
return in4;
}
/**
* 设置in4属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIn4(String value) {
this.in4 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "forwardWorkflowRequestResponse")
public class ForwardWorkflowRequestResponse {
@XmlElement(required = true, nillable = true)
protected String out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link String }
*
*/
public String getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setOut(String value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "getAllWorkflowRequestCount")
public class GetAllWorkflowRequestCount {
protected int in0;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in1;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn1(ArrayOfString value) {
this.in1 = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllWorkflowRequestCountResponse")
public class GetAllWorkflowRequestCountResponse {
protected int out;
/**
* 获取out属性的值。
*
*/
public int getOut() {
return out;
}
/**
* 设置out属性的值。
*
*/
public void setOut(int value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in4" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3",
"in4"
})
@XmlRootElement(name = "getAllWorkflowRequestList")
public class GetAllWorkflowRequestList {
protected int in0;
protected int in1;
protected int in2;
protected int in3;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in4;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
*/
public int getIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
*/
public void setIn2(int value) {
this.in2 = value;
}
/**
* 获取in3属性的值。
*
*/
public int getIn3() {
return in3;
}
/**
* 设置in3属性的值。
*
*/
public void setIn3(int value) {
this.in3 = value;
}
/**
* 获取in4属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn4() {
return in4;
}
/**
* 设置in4属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn4(ArrayOfString value) {
this.in4 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://webservices.workflow.weaver}ArrayOfWorkflowRequestInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getAllWorkflowRequestListResponse")
public class GetAllWorkflowRequestListResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfWorkflowRequestInfo out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public ArrayOfWorkflowRequestInfo getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public void setOut(ArrayOfWorkflowRequestInfo value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "getBeRejectWorkflowRequestCount")
public class GetBeRejectWorkflowRequestCount {
protected int in0;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in1;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn1(ArrayOfString value) {
this.in1 = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getBeRejectWorkflowRequestCountResponse")
public class GetBeRejectWorkflowRequestCountResponse {
protected int out;
/**
* 获取out属性的值。
*
*/
public int getOut() {
return out;
}
/**
* 设置out属性的值。
*
*/
public void setOut(int value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in4" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3",
"in4"
})
@XmlRootElement(name = "getBeRejectWorkflowRequestList")
public class GetBeRejectWorkflowRequestList {
protected int in0;
protected int in1;
protected int in2;
protected int in3;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in4;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
*/
public int getIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
*/
public void setIn2(int value) {
this.in2 = value;
}
/**
* 获取in3属性的值。
*
*/
public int getIn3() {
return in3;
}
/**
* 设置in3属性的值。
*
*/
public void setIn3(int value) {
this.in3 = value;
}
/**
* 获取in4属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn4() {
return in4;
}
/**
* 设置in4属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn4(ArrayOfString value) {
this.in4 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://webservices.workflow.weaver}ArrayOfWorkflowRequestInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getBeRejectWorkflowRequestListResponse")
public class GetBeRejectWorkflowRequestListResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfWorkflowRequestInfo out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public ArrayOfWorkflowRequestInfo getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public void setOut(ArrayOfWorkflowRequestInfo value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "getCCWorkflowRequestCount")
public class GetCCWorkflowRequestCount {
protected int in0;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in1;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn1(ArrayOfString value) {
this.in1 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "getCCWorkflowRequestCount4OS")
public class GetCCWorkflowRequestCount4OS {
protected int in0;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in1;
protected boolean in2;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn1(ArrayOfString value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
*/
public boolean isIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
*/
public void setIn2(boolean value) {
this.in2 = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getCCWorkflowRequestCount4OSResponse")
public class GetCCWorkflowRequestCount4OSResponse {
protected int out;
/**
* 获取out属性的值。
*
*/
public int getOut() {
return out;
}
/**
* 设置out属性的值。
*
*/
public void setOut(int value) {
this.out = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getCCWorkflowRequestCountResponse")
public class GetCCWorkflowRequestCountResponse {
protected int out;
/**
* 获取out属性的值。
*
*/
public int getOut() {
return out;
}
/**
* 设置out属性的值。
*
*/
public void setOut(int value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in4" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3",
"in4"
})
@XmlRootElement(name = "getCCWorkflowRequestList")
public class GetCCWorkflowRequestList {
protected int in0;
protected int in1;
protected int in2;
protected int in3;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in4;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
*/
public int getIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
*/
public void setIn2(int value) {
this.in2 = value;
}
/**
* 获取in3属性的值。
*
*/
public int getIn3() {
return in3;
}
/**
* 设置in3属性的值。
*
*/
public void setIn3(int value) {
this.in3 = value;
}
/**
* 获取in4属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn4() {
return in4;
}
/**
* 设置in4属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn4(ArrayOfString value) {
this.in4 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in4" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;element name="in5" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3",
"in4",
"in5"
})
@XmlRootElement(name = "getCCWorkflowRequestList4OS")
public class GetCCWorkflowRequestList4OS {
protected int in0;
protected int in1;
protected int in2;
protected int in3;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in4;
protected boolean in5;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
*/
public int getIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
*/
public void setIn2(int value) {
this.in2 = value;
}
/**
* 获取in3属性的值。
*
*/
public int getIn3() {
return in3;
}
/**
* 设置in3属性的值。
*
*/
public void setIn3(int value) {
this.in3 = value;
}
/**
* 获取in4属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn4() {
return in4;
}
/**
* 设置in4属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn4(ArrayOfString value) {
this.in4 = value;
}
/**
* 获取in5属性的值。
*
*/
public boolean isIn5() {
return in5;
}
/**
* 设置in5属性的值。
*
*/
public void setIn5(boolean value) {
this.in5 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://webservices.workflow.weaver}ArrayOfWorkflowRequestInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getCCWorkflowRequestList4OSResponse")
public class GetCCWorkflowRequestList4OSResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfWorkflowRequestInfo out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public ArrayOfWorkflowRequestInfo getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public void setOut(ArrayOfWorkflowRequestInfo value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://webservices.workflow.weaver}ArrayOfWorkflowRequestInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getCCWorkflowRequestListResponse")
public class GetCCWorkflowRequestListResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfWorkflowRequestInfo out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public ArrayOfWorkflowRequestInfo getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public void setOut(ArrayOfWorkflowRequestInfo value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in2" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "getCreateWorkflowCount")
public class GetCreateWorkflowCount {
protected int in0;
protected int in1;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in2;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn2(ArrayOfString value) {
this.in2 = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getCreateWorkflowCountResponse")
public class GetCreateWorkflowCountResponse {
protected int out;
/**
* 获取out属性的值。
*
*/
public int getOut() {
return out;
}
/**
* 设置out属性的值。
*
*/
public void setOut(int value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in4" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in5" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3",
"in4",
"in5"
})
@XmlRootElement(name = "getCreateWorkflowList")
public class GetCreateWorkflowList {
protected int in0;
protected int in1;
protected int in2;
protected int in3;
protected int in4;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in5;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
*/
public int getIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
*/
public void setIn2(int value) {
this.in2 = value;
}
/**
* 获取in3属性的值。
*
*/
public int getIn3() {
return in3;
}
/**
* 设置in3属性的值。
*
*/
public void setIn3(int value) {
this.in3 = value;
}
/**
* 获取in4属性的值。
*
*/
public int getIn4() {
return in4;
}
/**
* 设置in4属性的值。
*
*/
public void setIn4(int value) {
this.in4 = value;
}
/**
* 获取in5属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn5() {
return in5;
}
/**
* 设置in5属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn5(ArrayOfString value) {
this.in5 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://webservices.workflow.weaver}ArrayOfWorkflowBaseInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getCreateWorkflowListResponse")
public class GetCreateWorkflowListResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfWorkflowBaseInfo out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link ArrayOfWorkflowBaseInfo }
*
*/
public ArrayOfWorkflowBaseInfo getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfWorkflowBaseInfo }
*
*/
public void setOut(ArrayOfWorkflowBaseInfo value) {
this.out = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "getCreateWorkflowRequestInfo")
public class GetCreateWorkflowRequestInfo {
protected int in0;
protected int in1;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://webservices.workflow.weaver}WorkflowRequestInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getCreateWorkflowRequestInfoResponse")
public class GetCreateWorkflowRequestInfoResponse {
@XmlElement(required = true, nillable = true)
protected WorkflowRequestInfo out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link WorkflowRequestInfo }
*
*/
public WorkflowRequestInfo getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link WorkflowRequestInfo }
*
*/
public void setOut(WorkflowRequestInfo value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "getCreateWorkflowTypeCount")
public class GetCreateWorkflowTypeCount {
protected int in0;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in1;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn1(ArrayOfString value) {
this.in1 = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getCreateWorkflowTypeCountResponse")
public class GetCreateWorkflowTypeCountResponse {
protected int out;
/**
* 获取out属性的值。
*
*/
public int getOut() {
return out;
}
/**
* 设置out属性的值。
*
*/
public void setOut(int value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in4" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3",
"in4"
})
@XmlRootElement(name = "getCreateWorkflowTypeList")
public class GetCreateWorkflowTypeList {
protected int in0;
protected int in1;
protected int in2;
protected int in3;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in4;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
*/
public int getIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
*/
public void setIn2(int value) {
this.in2 = value;
}
/**
* 获取in3属性的值。
*
*/
public int getIn3() {
return in3;
}
/**
* 设置in3属性的值。
*
*/
public void setIn3(int value) {
this.in3 = value;
}
/**
* 获取in4属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn4() {
return in4;
}
/**
* 设置in4属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn4(ArrayOfString value) {
this.in4 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://webservices.workflow.weaver}ArrayOfWorkflowBaseInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getCreateWorkflowTypeListResponse")
public class GetCreateWorkflowTypeListResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfWorkflowBaseInfo out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link ArrayOfWorkflowBaseInfo }
*
*/
public ArrayOfWorkflowBaseInfo getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfWorkflowBaseInfo }
*
*/
public void setOut(ArrayOfWorkflowBaseInfo value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "getDoingWorkflowRequestCount")
public class GetDoingWorkflowRequestCount {
protected int in0;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in1;
protected boolean in2;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn1(ArrayOfString value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
*/
public boolean isIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
*/
public void setIn2(boolean value) {
this.in2 = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDoingWorkflowRequestCountResponse")
public class GetDoingWorkflowRequestCountResponse {
protected int out;
/**
* 获取out属性的值。
*
*/
public int getOut() {
return out;
}
/**
* 设置out属性的值。
*
*/
public void setOut(int value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in4" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;element name="in5" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3",
"in4",
"in5"
})
@XmlRootElement(name = "getDoingWorkflowRequestList")
public class GetDoingWorkflowRequestList {
protected int in0;
protected int in1;
protected int in2;
protected int in3;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in4;
protected boolean in5;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
*/
public int getIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
*/
public void setIn2(int value) {
this.in2 = value;
}
/**
* 获取in3属性的值。
*
*/
public int getIn3() {
return in3;
}
/**
* 设置in3属性的值。
*
*/
public void setIn3(int value) {
this.in3 = value;
}
/**
* 获取in4属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn4() {
return in4;
}
/**
* 设置in4属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn4(ArrayOfString value) {
this.in4 = value;
}
/**
* 获取in5属性的值。
*
*/
public boolean isIn5() {
return in5;
}
/**
* 设置in5属性的值。
*
*/
public void setIn5(boolean value) {
this.in5 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://webservices.workflow.weaver}ArrayOfWorkflowRequestInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getDoingWorkflowRequestListResponse")
public class GetDoingWorkflowRequestListResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfWorkflowRequestInfo out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public ArrayOfWorkflowRequestInfo getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public void setOut(ArrayOfWorkflowRequestInfo value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "getForwardWorkflowRequestCount")
public class GetForwardWorkflowRequestCount {
protected int in0;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in1;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn1(ArrayOfString value) {
this.in1 = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getForwardWorkflowRequestCountResponse")
public class GetForwardWorkflowRequestCountResponse {
protected int out;
/**
* 获取out属性的值。
*
*/
public int getOut() {
return out;
}
/**
* 设置out属性的值。
*
*/
public void setOut(int value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in3" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in4" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2",
"in3",
"in4"
})
@XmlRootElement(name = "getForwardWorkflowRequestList")
public class GetForwardWorkflowRequestList {
protected int in0;
protected int in1;
protected int in2;
protected int in3;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in4;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
*/
public int getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
*/
public void setIn1(int value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
*/
public int getIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
*/
public void setIn2(int value) {
this.in2 = value;
}
/**
* 获取in3属性的值。
*
*/
public int getIn3() {
return in3;
}
/**
* 设置in3属性的值。
*
*/
public void setIn3(int value) {
this.in3 = value;
}
/**
* 获取in4属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn4() {
return in4;
}
/**
* 设置in4属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn4(ArrayOfString value) {
this.in4 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://webservices.workflow.weaver}ArrayOfWorkflowRequestInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getForwardWorkflowRequestListResponse")
public class GetForwardWorkflowRequestListResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfWorkflowRequestInfo out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public ArrayOfWorkflowRequestInfo getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public void setOut(ArrayOfWorkflowRequestInfo value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1"
})
@XmlRootElement(name = "getHendledWorkflowRequestCount")
public class GetHendledWorkflowRequestCount {
protected int in0;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in1;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn1(ArrayOfString value) {
this.in1 = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="in0" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;element name="in1" type="{webservices.services.weaver.com.cn}ArrayOfString"/&gt;
* &lt;element name="in2" type="{http://www.w3.org/2001/XMLSchema}boolean"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"in0",
"in1",
"in2"
})
@XmlRootElement(name = "getHendledWorkflowRequestCount4Ofs")
public class GetHendledWorkflowRequestCount4Ofs {
protected int in0;
@XmlElement(required = true, nillable = true)
protected ArrayOfString in1;
protected boolean in2;
/**
* 获取in0属性的值。
*
*/
public int getIn0() {
return in0;
}
/**
* 设置in0属性的值。
*
*/
public void setIn0(int value) {
this.in0 = value;
}
/**
* 获取in1属性的值。
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getIn1() {
return in1;
}
/**
* 设置in1属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setIn1(ArrayOfString value) {
this.in1 = value;
}
/**
* 获取in2属性的值。
*
*/
public boolean isIn2() {
return in2;
}
/**
* 设置in2属性的值。
*
*/
public void setIn2(boolean value) {
this.in2 = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getHendledWorkflowRequestCount4OfsResponse")
public class GetHendledWorkflowRequestCount4OfsResponse {
protected int out;
/**
* 获取out属性的值。
*
*/
public int getOut() {
return out;
}
/**
* 设置out属性的值。
*
*/
public void setOut(int value) {
this.out = value;
}
}
package com.dianmi.ws;
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>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://www.w3.org/2001/XMLSchema}int"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getHendledWorkflowRequestCountResponse")
public class GetHendledWorkflowRequestCountResponse {
protected int out;
/**
* 获取out属性的值。
*
*/
public int getOut() {
return out;
}
/**
* 设置out属性的值。
*
*/
public void setOut(int value) {
this.out = value;
}
}
This diff is collapsed.
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://webservices.workflow.weaver}ArrayOfWorkflowRequestInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getHendledWorkflowRequestList4OfsResponse")
public class GetHendledWorkflowRequestList4OfsResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfWorkflowRequestInfo out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public ArrayOfWorkflowRequestInfo getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public void setOut(ArrayOfWorkflowRequestInfo value) {
this.out = value;
}
}
package com.dianmi.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>anonymous complex type的 Java 类。
*
* <p>以下模式片段指定包含在此类中的预期内容。
*
* <pre>
* &lt;complexType&gt;
* &lt;complexContent&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
* &lt;sequence&gt;
* &lt;element name="out" type="{http://webservices.workflow.weaver}ArrayOfWorkflowRequestInfo"/&gt;
* &lt;/sequence&gt;
* &lt;/restriction&gt;
* &lt;/complexContent&gt;
* &lt;/complexType&gt;
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"out"
})
@XmlRootElement(name = "getHendledWorkflowRequestListResponse")
public class GetHendledWorkflowRequestListResponse {
@XmlElement(required = true, nillable = true)
protected ArrayOfWorkflowRequestInfo out;
/**
* 获取out属性的值。
*
* @return
* possible object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public ArrayOfWorkflowRequestInfo getOut() {
return out;
}
/**
* 设置out属性的值。
*
* @param value
* allowed object is
* {@link ArrayOfWorkflowRequestInfo }
*
*/
public void setOut(ArrayOfWorkflowRequestInfo value) {
this.out = value;
}
}
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment