// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2016.07.21 at 07:28:26 PM CST // package com.sinosoft.nwyj.integration.cxf.dc.querySingleTabData; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * 查询条件 * *

* Java class for InParam complex type. * *

* The following schema fragment specifies the expected content contained within * this class. * *

 * <complexType name="InParam">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="paraName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="paraValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="opt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InParam", propOrder = { "paraName", "paraValue", "opt" }) public class InParam implements Serializable { /** * */ private static final long serialVersionUID = -8377469798286002163L; protected String paraName; protected String paraValue; protected String opt; /** * Gets the value of the paraName property. * * @return possible object is {@link String } * */ public String getParaName() { return paraName; } /** * Sets the value of the paraName property. * * @param value * allowed object is {@link String } * */ public void setParaName(String value) { this.paraName = value; } /** * Gets the value of the paraValue property. * * @return possible object is {@link String } * */ public String getParaValue() { return paraValue; } /** * Sets the value of the paraValue property. * * @param value * allowed object is {@link String } * */ public void setParaValue(String value) { this.paraValue = value; } /** * Gets the value of the opt property. * * @return possible object is {@link String } * */ public String getOpt() { return opt; } /** * Sets the value of the opt property. * * @param value * allowed object is {@link String } * */ public void setOpt(String value) { this.opt = value; } }