All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sany.masterdata.hr.entity.orginfo.OrgInfo Maven / Gradle / Ivy


package com.sany.masterdata.hr.entity.orginfo;

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 OrgInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="OrgInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="orgId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="orgName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="orgNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="parentId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="u_flag" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="enName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="orgLevel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OrgInfo", propOrder = { "orgId", "orgName", "orgNumber", "parentId", "uFlag", "enName", "orgLevel" }) public class OrgInfo { @XmlElementRef(name = "orgId", namespace = "http://service.sany.com", type = JAXBElement.class) protected JAXBElement orgId; @XmlElementRef(name = "orgName", namespace = "http://service.sany.com", type = JAXBElement.class) protected JAXBElement orgName; @XmlElementRef(name = "orgNumber", namespace = "http://service.sany.com", type = JAXBElement.class) protected JAXBElement orgNumber; @XmlElementRef(name = "parentId", namespace = "http://service.sany.com", type = JAXBElement.class) protected JAXBElement parentId; @XmlElementRef(name = "u_flag", namespace = "http://service.sany.com", type = JAXBElement.class) protected JAXBElement uFlag; @XmlElementRef(name = "enName", namespace = "http://service.sany.com", type = JAXBElement.class) protected JAXBElement enName; @XmlElementRef(name = "orgLevel", namespace = "http://service.sany.com", type = JAXBElement.class) protected JAXBElement orgLevel; /** * Gets the value of the orgId property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getOrgId() { return orgId; } /** * 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; } /** * Gets the value of the orgName property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getOrgName() { return orgName; } /** * Sets the value of the orgName property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setOrgName(JAXBElement value) { this.orgName = value; } /** * Gets the value of the orgNumber property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getOrgNumber() { return orgNumber; } /** * Sets the value of the orgNumber property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setOrgNumber(JAXBElement value) { this.orgNumber = value; } /** * Gets the value of the parentId property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getParentId() { return parentId; } /** * Sets the value of the parentId property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setParentId(JAXBElement value) { this.parentId = value; } /** * 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 uFlag property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setUFlag(JAXBElement value) { this.uFlag = value; } /** * Gets the value of the enName property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getEnName() { return enName; } /** * Sets the value of the enName property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setEnName(JAXBElement value) { this.enName = value; } /** * Gets the value of the orgLevel property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getOrgLevel() { return orgLevel; } /** * Sets the value of the orgLevel property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setOrgLevel(JAXBElement value) { this.orgLevel = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy