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

net.datastream.schemas.mp_entities.equipmentstructure_001.EquipmentStructure Maven / Gradle / Ivy

There is a newer version: 12.1-4
Show newest version

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;


/**
 * 

Java class for anonymous complex type. * *

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

 * <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; /** * Gets the value of the equipmentstructureid property. * * @return * possible object is * {@link EQUIPMENTSTRUCTUREID_Type } * */ public EQUIPMENTSTRUCTUREID_Type getEQUIPMENTSTRUCTUREID() { return equipmentstructureid; } /** * Sets the value of the equipmentstructureid property. * * @param value * allowed object is * {@link EQUIPMENTSTRUCTUREID_Type } * */ public void setEQUIPMENTSTRUCTUREID(EQUIPMENTSTRUCTUREID_Type value) { this.equipmentstructureid = value; } /** * Gets the value of the costrollup property. * * @return * possible object is * {@link String } * */ public String getCOSTROLLUP() { return costrollup; } /** * Sets the value of the costrollup property. * * @param value * allowed object is * {@link String } * */ public void setCOSTROLLUP(String value) { this.costrollup = value; } /** * Gets the value of the dependenton property. * * @return * possible object is * {@link String } * */ public String getDEPENDENTON() { return dependenton; } /** * Sets the value of the dependenton property. * * @param value * allowed object is * {@link String } * */ public void setDEPENDENTON(String value) { this.dependenton = value; } /** * Gets the value of the sequencenumber property. * * @return * possible object is * {@link Long } * */ public Long getSEQUENCENUMBER() { return sequencenumber; } /** * Sets the value of the sequencenumber property. * * @param value * allowed object is * {@link Long } * */ public void setSEQUENCENUMBER(Long value) { this.sequencenumber = value; } /** * Gets the value of the recordid property. * * @return * possible object is * {@link Long } * */ public Long getRecordid() { return recordid; } /** * Sets the value of the recordid property. * * @param value * allowed object is * {@link Long } * */ public void setRecordid(Long value) { this.recordid = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy