123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- //
- // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
- // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
- // 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;
- /**
- * 查询条件
- *
- * <p>
- * Java class for InParam complex type.
- *
- * <p>
- * The following schema fragment specifies the expected content contained within
- * this class.
- *
- * <pre>
- * <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>
- * </pre>
- *
- *
- */
- @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;
- }
- }
|