// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // 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: 2013.10.29 at 03:33:15 下午 CST // package org.solmix.api.jaxb; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for TsqlPara complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="TsqlPara"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attGroup ref="{http://www.solmix.org/xmlns/datasource/v1.0.1}Aso_datasource"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TsqlPara") public class TsqlPara { @XmlAttribute protected String tableName; @XmlAttribute protected String dbName; @XmlAttribute protected String sqlSchema; @XmlAttribute protected Boolean simpleReturn; /** * 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 dbName property. * * @return * possible object is * {@link String } * */ public String getDbName() { return dbName; } /** * Sets the value of the dbName property. * * @param value * allowed object is * {@link String } * */ public void setDbName(String value) { this.dbName = value; } /** * Gets the value of the sqlSchema property. * * @return * possible object is * {@link String } * */ public String getSqlSchema() { return sqlSchema; } /** * Sets the value of the sqlSchema property. * * @param value * allowed object is * {@link String } * */ public void setSqlSchema(String value) { this.sqlSchema = value; } /** * Gets the value of the simpleReturn property. * * @return * possible object is * {@link Boolean } * */ public boolean isSimpleReturn() { if (simpleReturn == null) { return false; } else { return simpleReturn; } } /** * Sets the value of the simpleReturn property. * * @param value * allowed object is * {@link Boolean } * */ public void setSimpleReturn(Boolean value) { this.simpleReturn = value; } }