
net.datastream.schemas.mp_entities.equipmentstructure_001.EquipmentStructure Maven / Gradle / Ivy
package net.datastream.schemas.mp_entities.equipmentstructure_001;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import net.datastream.schemas.mp_fields.EQUIPMENTSTRUCTUREID_Type;
/**
* Classe Java pour anonymous complex type.
*
*
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.datastream.net/MP_fields}EQUIPMENTSTRUCTUREID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}COSTROLLUP" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}DEPENDENTON" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}SEQUENCENUMBER" minOccurs="0"/>
* </sequence>
* <attribute name="recordid" type="{http://www.w3.org/2001/XMLSchema}long" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"equipmentstructureid",
"costrollup",
"dependenton",
"sequencenumber"
})
@XmlRootElement(name = "EquipmentStructure")
public class EquipmentStructure {
@XmlElement(name = "EQUIPMENTSTRUCTUREID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected EQUIPMENTSTRUCTUREID_Type equipmentstructureid;
@XmlElement(name = "COSTROLLUP", namespace = "http://schemas.datastream.net/MP_fields")
protected String costrollup;
@XmlElement(name = "DEPENDENTON", namespace = "http://schemas.datastream.net/MP_fields")
protected String dependenton;
@XmlElement(name = "SEQUENCENUMBER", namespace = "http://schemas.datastream.net/MP_fields")
protected Long sequencenumber;
@XmlAttribute(name = "recordid")
protected Long recordid;
/**
* Obtient la valeur de la propriété equipmentstructureid.
*
* @return
* possible object is
* {@link EQUIPMENTSTRUCTUREID_Type }
*
*/
public EQUIPMENTSTRUCTUREID_Type getEQUIPMENTSTRUCTUREID() {
return equipmentstructureid;
}
/**
* Définit la valeur de la propriété equipmentstructureid.
*
* @param value
* allowed object is
* {@link EQUIPMENTSTRUCTUREID_Type }
*
*/
public void setEQUIPMENTSTRUCTUREID(EQUIPMENTSTRUCTUREID_Type value) {
this.equipmentstructureid = value;
}
/**
* Obtient la valeur de la propriété costrollup.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCOSTROLLUP() {
return costrollup;
}
/**
* Définit la valeur de la propriété costrollup.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCOSTROLLUP(String value) {
this.costrollup = value;
}
/**
* Obtient la valeur de la propriété dependenton.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDEPENDENTON() {
return dependenton;
}
/**
* Définit la valeur de la propriété dependenton.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDEPENDENTON(String value) {
this.dependenton = value;
}
/**
* Obtient la valeur de la propriété sequencenumber.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSEQUENCENUMBER() {
return sequencenumber;
}
/**
* Définit la valeur de la propriété sequencenumber.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSEQUENCENUMBER(Long value) {
this.sequencenumber = value;
}
/**
* Obtient la valeur de la propriété recordid.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getRecordid() {
return recordid;
}
/**
* Définit la valeur de la propriété recordid.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setRecordid(Long value) {
this.recordid = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy