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.XmlType; /** *

WorkflowRequestLog complex type的 Java 类。 * *

以下模式片段指定包含在此类中的预期内容。 * *

 * <complexType name="WorkflowRequestLog">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="agentor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="agentorDept" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="annexDocHtmls" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="nodeId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="nodeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="operateDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="operateTime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="operateType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="operatorDept" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="operatorId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="operatorName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="operatorSign" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="receivedPersons" 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="remarkSign" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="signDocHtmls" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="signWorkFlowHtmls" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WorkflowRequestLog", namespace = "http://webservices.workflow.weaver", propOrder = { "agentor", "agentorDept", "annexDocHtmls", "id", "nodeId", "nodeName", "operateDate", "operateTime", "operateType", "operatorDept", "operatorId", "operatorName", "operatorSign", "receivedPersons", "remark", "remarkSign", "signDocHtmls", "signWorkFlowHtmls" }) public class WorkflowRequestLog { @XmlElement(nillable = true) protected String agentor; @XmlElement(nillable = true) protected String agentorDept; @XmlElement(nillable = true) protected String annexDocHtmls; @XmlElement(nillable = true) protected String id; @XmlElement(nillable = true) protected String nodeId; @XmlElement(nillable = true) protected String nodeName; @XmlElement(nillable = true) protected String operateDate; @XmlElement(nillable = true) protected String operateTime; @XmlElement(nillable = true) protected String operateType; @XmlElement(nillable = true) protected String operatorDept; @XmlElement(nillable = true) protected String operatorId; @XmlElement(nillable = true) protected String operatorName; @XmlElement(nillable = true) protected String operatorSign; @XmlElement(nillable = true) protected String receivedPersons; @XmlElement(nillable = true) protected String remark; @XmlElement(nillable = true) protected String remarkSign; @XmlElement(nillable = true) protected String signDocHtmls; @XmlElement(nillable = true) protected String signWorkFlowHtmls; /** * 获取agentor属性的值。 * * @return * possible object is * {@link String } * */ public String getAgentor() { return agentor; } /** * 设置agentor属性的值。 * * @param value * allowed object is * {@link String } * */ public void setAgentor(String value) { this.agentor = value; } /** * 获取agentorDept属性的值。 * * @return * possible object is * {@link String } * */ public String getAgentorDept() { return agentorDept; } /** * 设置agentorDept属性的值。 * * @param value * allowed object is * {@link String } * */ public void setAgentorDept(String value) { this.agentorDept = value; } /** * 获取annexDocHtmls属性的值。 * * @return * possible object is * {@link String } * */ public String getAnnexDocHtmls() { return annexDocHtmls; } /** * 设置annexDocHtmls属性的值。 * * @param value * allowed object is * {@link String } * */ public void setAnnexDocHtmls(String value) { this.annexDocHtmls = value; } /** * 获取id属性的值。 * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * 设置id属性的值。 * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * 获取nodeId属性的值。 * * @return * possible object is * {@link String } * */ public String getNodeId() { return nodeId; } /** * 设置nodeId属性的值。 * * @param value * allowed object is * {@link String } * */ public void setNodeId(String value) { this.nodeId = value; } /** * 获取nodeName属性的值。 * * @return * possible object is * {@link String } * */ public String getNodeName() { return nodeName; } /** * 设置nodeName属性的值。 * * @param value * allowed object is * {@link String } * */ public void setNodeName(String value) { this.nodeName = value; } /** * 获取operateDate属性的值。 * * @return * possible object is * {@link String } * */ public String getOperateDate() { return operateDate; } /** * 设置operateDate属性的值。 * * @param value * allowed object is * {@link String } * */ public void setOperateDate(String value) { this.operateDate = value; } /** * 获取operateTime属性的值。 * * @return * possible object is * {@link String } * */ public String getOperateTime() { return operateTime; } /** * 设置operateTime属性的值。 * * @param value * allowed object is * {@link String } * */ public void setOperateTime(String value) { this.operateTime = value; } /** * 获取operateType属性的值。 * * @return * possible object is * {@link String } * */ public String getOperateType() { return operateType; } /** * 设置operateType属性的值。 * * @param value * allowed object is * {@link String } * */ public void setOperateType(String value) { this.operateType = value; } /** * 获取operatorDept属性的值。 * * @return * possible object is * {@link String } * */ public String getOperatorDept() { return operatorDept; } /** * 设置operatorDept属性的值。 * * @param value * allowed object is * {@link String } * */ public void setOperatorDept(String value) { this.operatorDept = value; } /** * 获取operatorId属性的值。 * * @return * possible object is * {@link String } * */ public String getOperatorId() { return operatorId; } /** * 设置operatorId属性的值。 * * @param value * allowed object is * {@link String } * */ public void setOperatorId(String value) { this.operatorId = value; } /** * 获取operatorName属性的值。 * * @return * possible object is * {@link String } * */ public String getOperatorName() { return operatorName; } /** * 设置operatorName属性的值。 * * @param value * allowed object is * {@link String } * */ public void setOperatorName(String value) { this.operatorName = value; } /** * 获取operatorSign属性的值。 * * @return * possible object is * {@link String } * */ public String getOperatorSign() { return operatorSign; } /** * 设置operatorSign属性的值。 * * @param value * allowed object is * {@link String } * */ public void setOperatorSign(String value) { this.operatorSign = value; } /** * 获取receivedPersons属性的值。 * * @return * possible object is * {@link String } * */ public String getReceivedPersons() { return receivedPersons; } /** * 设置receivedPersons属性的值。 * * @param value * allowed object is * {@link String } * */ public void setReceivedPersons(String value) { this.receivedPersons = 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; } /** * 获取remarkSign属性的值。 * * @return * possible object is * {@link String } * */ public String getRemarkSign() { return remarkSign; } /** * 设置remarkSign属性的值。 * * @param value * allowed object is * {@link String } * */ public void setRemarkSign(String value) { this.remarkSign = value; } /** * 获取signDocHtmls属性的值。 * * @return * possible object is * {@link String } * */ public String getSignDocHtmls() { return signDocHtmls; } /** * 设置signDocHtmls属性的值。 * * @param value * allowed object is * {@link String } * */ public void setSignDocHtmls(String value) { this.signDocHtmls = value; } /** * 获取signWorkFlowHtmls属性的值。 * * @return * possible object is * {@link String } * */ public String getSignWorkFlowHtmls() { return signWorkFlowHtmls; } /** * 设置signWorkFlowHtmls属性的值。 * * @param value * allowed object is * {@link String } * */ public void setSignWorkFlowHtmls(String value) { this.signWorkFlowHtmls = value; } }