net.datastream.schemas.mp_entities.kitsessionpart_001.KitSessionPart Maven / Gradle / Ivy
package net.datastream.schemas.mp_entities.kitsessionpart_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.BINID_Type;
import net.datastream.schemas.mp_fields.EQUIPMENTID_Type;
import net.datastream.schemas.mp_fields.KITSESSIONPARTID_Type;
import net.datastream.schemas.mp_fields.LOTID_Type;
import net.datastream.schemas.mp_fields.PARTID_Type;
import org.openapplications.oagis_segments.QUANTITY;
/**
* 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}KITSESSIONPARTID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}DBSESSIONID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}PARTID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}BINID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}LOTID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ISSUEDQTY"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ASSETID" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}SELECT" minOccurs="0"/>
* </sequence>
* <attribute name="recordid" type="{http://www.w3.org/2001/XMLSchema}long" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"kitsessionpartid",
"dbsessionid",
"partid",
"binid",
"lotid",
"issuedqty",
"assetid",
"select"
})
@XmlRootElement(name = "KitSessionPart")
public class KitSessionPart {
@XmlElement(name = "KITSESSIONPARTID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected KITSESSIONPARTID_Type kitsessionpartid;
@XmlElement(name = "DBSESSIONID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected QUANTITY dbsessionid;
@XmlElement(name = "PARTID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected PARTID_Type partid;
@XmlElement(name = "BINID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected BINID_Type binid;
@XmlElement(name = "LOTID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected LOTID_Type lotid;
@XmlElement(name = "ISSUEDQTY", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected QUANTITY issuedqty;
@XmlElement(name = "ASSETID", namespace = "http://schemas.datastream.net/MP_fields")
protected EQUIPMENTID_Type assetid;
@XmlElement(name = "SELECT", namespace = "http://schemas.datastream.net/MP_fields")
protected String select;
@XmlAttribute(name = "recordid")
protected Long recordid;
/**
* Gets the value of the kitsessionpartid property.
*
* @return
* possible object is
* {@link KITSESSIONPARTID_Type }
*
*/
public KITSESSIONPARTID_Type getKITSESSIONPARTID() {
return kitsessionpartid;
}
/**
* Sets the value of the kitsessionpartid property.
*
* @param value
* allowed object is
* {@link KITSESSIONPARTID_Type }
*
*/
public void setKITSESSIONPARTID(KITSESSIONPARTID_Type value) {
this.kitsessionpartid = value;
}
/**
* Gets the value of the dbsessionid property.
*
* @return
* possible object is
* {@link QUANTITY }
*
*/
public QUANTITY getDBSESSIONID() {
return dbsessionid;
}
/**
* Sets the value of the dbsessionid property.
*
* @param value
* allowed object is
* {@link QUANTITY }
*
*/
public void setDBSESSIONID(QUANTITY value) {
this.dbsessionid = value;
}
/**
* Gets the value of the partid property.
*
* @return
* possible object is
* {@link PARTID_Type }
*
*/
public PARTID_Type getPARTID() {
return partid;
}
/**
* Sets the value of the partid property.
*
* @param value
* allowed object is
* {@link PARTID_Type }
*
*/
public void setPARTID(PARTID_Type value) {
this.partid = value;
}
/**
* Gets the value of the binid property.
*
* @return
* possible object is
* {@link BINID_Type }
*
*/
public BINID_Type getBINID() {
return binid;
}
/**
* Sets the value of the binid property.
*
* @param value
* allowed object is
* {@link BINID_Type }
*
*/
public void setBINID(BINID_Type value) {
this.binid = value;
}
/**
* Gets the value of the lotid property.
*
* @return
* possible object is
* {@link LOTID_Type }
*
*/
public LOTID_Type getLOTID() {
return lotid;
}
/**
* Sets the value of the lotid property.
*
* @param value
* allowed object is
* {@link LOTID_Type }
*
*/
public void setLOTID(LOTID_Type value) {
this.lotid = value;
}
/**
* Gets the value of the issuedqty property.
*
* @return
* possible object is
* {@link QUANTITY }
*
*/
public QUANTITY getISSUEDQTY() {
return issuedqty;
}
/**
* Sets the value of the issuedqty property.
*
* @param value
* allowed object is
* {@link QUANTITY }
*
*/
public void setISSUEDQTY(QUANTITY value) {
this.issuedqty = value;
}
/**
* Gets the value of the assetid property.
*
* @return
* possible object is
* {@link EQUIPMENTID_Type }
*
*/
public EQUIPMENTID_Type getASSETID() {
return assetid;
}
/**
* Sets the value of the assetid property.
*
* @param value
* allowed object is
* {@link EQUIPMENTID_Type }
*
*/
public void setASSETID(EQUIPMENTID_Type value) {
this.assetid = value;
}
/**
* Gets the value of the select property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSELECT() {
return select;
}
/**
* Sets the value of the select property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSELECT(String value) {
this.select = 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