com.sany.masterdata.hr.entity.jobinfo.JobInfo Maven / Gradle / Ivy
package com.sany.masterdata.hr.entity.jobinfo;
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 JobInfo complex type.
*
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="JobInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="job_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="job_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="org_id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="remarks" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="u_flag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "JobInfo", propOrder = {"jobId", "jobName", "orgId", "remarks", "uFlag"})
public class JobInfo {
@XmlElementRef(name = "job_id", namespace = "http://service.sany.com", type = JAXBElement.class)
protected JAXBElement jobId;
@XmlElementRef(name = "job_name", namespace = "http://service.sany.com", type = JAXBElement.class)
protected JAXBElement jobName;
@XmlElementRef(name = "org_id", namespace = "http://service.sany.com", type = JAXBElement.class)
protected JAXBElement orgId;
@XmlElementRef(name = "remarks", namespace = "http://service.sany.com", type = JAXBElement.class)
protected JAXBElement remarks;
@XmlElementRef(name = "u_flag", namespace = "http://service.sany.com", type = JAXBElement.class)
protected JAXBElement uFlag;
/**
* Gets the value of the jobId property.
*
* @return
* possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getJobId() {
return jobId;
}
/**
* Gets the value of the jobName property.
*
* @return
* possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getJobName() {
return jobName;
}
/**
* Gets the value of the orgId property.
*
* @return
* possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getOrgId() {
return orgId;
}
/**
* Gets the value of the remarks property.
*
* @return
* possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getRemarks() {
return remarks;
}
/**
* Gets the value of the uFlag property.
*
* @return
* possible object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement getUFlag() {
return uFlag;
}
/**
* Sets the value of the jobId property.
*
* @param value
* allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setJobId(JAXBElement value) {
this.jobId = value;
}
/**
* Sets the value of the jobName property.
*
* @param value
* allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setJobName(JAXBElement value) {
this.jobName = value;
}
/**
* Sets the value of the orgId property.
*
* @param value
* allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setOrgId(JAXBElement value) {
this.orgId = value;
}
/**
* Sets the value of the remarks property.
*
* @param value
* allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setRemarks(JAXBElement value) {
this.remarks = value;
}
/**
* Sets the value of the uFlag property.
*
* @param value
* allowed object is {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setUFlag(JAXBElement value) {
this.uFlag = value;
}
}