com.sany.masterdata.hr.entity.userinfo.Parameter Maven / Gradle / Ivy
package com.sany.masterdata.hr.entity.userinfo;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlType;
/**
*
* Java class for Parameter complex type.
*
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Parameter">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="bigeinDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="endDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="high" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="low" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="operator" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="otype" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Parameter", propOrder = {"bigeinDate", "endDate", "high", "low", "operator", "otype"})
public class Parameter {
@XmlElementRef(name = "bigeinDate", namespace = "http://service.sany.com", type = JAXBElement.class)
protected JAXBElement bigeinDate;
@XmlElementRef(name = "endDate", namespace = "http://service.sany.com", type = JAXBElement.class)
protected JAXBElement endDate;
@XmlElementRef(name = "high", namespace = "http://service.sany.com", type = JAXBElement.class)
protected JAXBElement high;
@XmlElementRef(name = "low", namespace = "http://service.sany.com", type = JAXBElement.class)
protected JAXBElement low;
@XmlElementRef(name = "operator", namespace = "http://service.sany.com", type = JAXBElement.class)
protected JAXBElement operator;
@XmlElementRef(name = "otype", namespace = "http://service.sany.com", type = JAXBElement.class)
protected JAXBElement otype;
/**
* Gets the value of the bigeinDate property.
*
* @return
* possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getBigeinDate() {
return bigeinDate;
}
/**
* Gets the value of the endDate property.
*
* @return
* possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getEndDate() {
return endDate;
}
/**
* Gets the value of the high property.
*
* @return
* possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getHigh() {
return high;
}
/**
* Gets the value of the low property.
*
* @return
* possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getLow() {
return low;
}
/**
* Gets the value of the operator property.
*
* @return
* possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getOperator() {
return operator;
}
/**
* Gets the value of the otype property.
*
* @return
* possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getOtype() {
return otype;
}
/**
* Sets the value of the bigeinDate property.
*
* @param value
* allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setBigeinDate(JAXBElement value) {
this.bigeinDate = value;
}
/**
* Sets the value of the endDate property.
*
* @param value
* allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setEndDate(JAXBElement value) {
this.endDate = value;
}
/**
* Sets the value of the high property.
*
* @param value
* allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setHigh(JAXBElement value) {
this.high = value;
}
/**
* Sets the value of the low property.
*
* @param value
* allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setLow(JAXBElement value) {
this.low = value;
}
/**
* Sets the value of the operator property.
*
* @param value
* allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setOperator(JAXBElement value) {
this.operator = value;
}
/**
* Sets the value of the otype property.
*
* @param value
* allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setOtype(JAXBElement value) {
this.otype = value;
}
}