123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- //
- // 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 InParamPack complex type.
- *
- * <p>
- * The following schema fragment specifies the expected content contained within
- * this class.
- *
- * <pre>
- * <complexType name="InParamPack">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <sequence>
- * <element name="appNum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="pageSize" type="{http://www.w3.org/2001/XMLSchema}int"/>
- * <element name="currentPage" type="{http://www.w3.org/2001/XMLSchema}int"/>
- * <element name="tableName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="tabType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="conds" type="{http://dc.soa.csg.cn/}Conds" minOccurs="0"/>
- * </sequence>
- * </restriction>
- * </complexContent>
- * </complexType>
- * </pre>
- *
- *
- */
- @XmlAccessorType(XmlAccessType.FIELD)
- @XmlType(name = "InParamPack", propOrder = { "appNum", "pageSize", "currentPage", "tableName", "tabType", "conds" })
- public class InParamPack implements Serializable {
- /**
- *
- */
- private static final long serialVersionUID = -867236094892767870L;
- protected String appNum;
- protected int pageSize;
- protected int currentPage;
- protected String tableName;
- protected String tabType;
- protected Conds conds;
- /**
- * Gets the value of the appNum property.
- *
- * @return possible object is {@link String }
- *
- */
- public String getAppNum() {
- return appNum;
- }
- /**
- * Sets the value of the appNum property.
- *
- * @param value
- * allowed object is {@link String }
- *
- */
- public void setAppNum(String value) {
- this.appNum = value;
- }
- /**
- * Gets the value of the pageSize property.
- *
- */
- public int getPageSize() {
- return pageSize;
- }
- /**
- * Sets the value of the pageSize property.
- *
- */
- public void setPageSize(int value) {
- this.pageSize = value;
- }
- /**
- * Gets the value of the currentPage property.
- *
- */
- public int getCurrentPage() {
- return currentPage;
- }
- /**
- * Sets the value of the currentPage property.
- *
- */
- public void setCurrentPage(int value) {
- this.currentPage = value;
- }
- /**
- * Gets the value of the tableName property.
- *
- * @return possible object is {@link String }
- *
- */
- public String getTableName() {
- return tableName;
- }
- /**
- * Sets the value of the tableName property.
- *
- * @param value
- * allowed object is {@link String }
- *
- */
- public void setTableName(String value) {
- this.tableName = value;
- }
- /**
- * Gets the value of the tabType property.
- *
- * @return possible object is {@link String }
- *
- */
- public String getTabType() {
- return tabType;
- }
- /**
- * Sets the value of the tabType property.
- *
- * @param value
- * allowed object is {@link String }
- *
- */
- public void setTabType(String value) {
- this.tabType = value;
- }
- /**
- * Gets the value of the conds property.
- *
- * @return possible object is {@link Conds }
- *
- */
- public Conds getConds() {
- return conds;
- }
- /**
- * Sets the value of the conds property.
- *
- * @param value
- * allowed object is {@link Conds }
- *
- */
- public void setConds(Conds value) {
- this.conds = value;
- }
- }
|