
net.datastream.schemas.mp_entities.binstock_001.BinStock Maven / Gradle / Ivy
package net.datastream.schemas.mp_entities.binstock_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.PARTID_Type;
import net.datastream.schemas.mp_fields.STOREID_Type;
import net.datastream.schemas.mp_fields.StandardUserDefinedFields;
import net.datastream.schemas.mp_fields.UOMID_Type;
import org.openapplications.oagis_segments.AMOUNT;
import org.openapplications.oagis_segments.QUANTITY;
/**
* 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}PARTID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}STOREID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}BIN" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}LOT" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}PRICE" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}QTYONHAND" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}BYASSET" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}REPAIRQTY" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}UOMID" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}PARTCONDITIONTEMPLATECONDITIONCODE" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}INSTALLEDCOMPONENT" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}StandardUserDefinedFields" minOccurs="0"/>
* </sequence>
* <attribute name="recordid" type="{http://www.w3.org/2001/XMLSchema}long" />
* <attribute name="user_entity" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="system_entity" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"partid",
"storeid",
"bin",
"lot",
"price",
"qtyonhand",
"byasset",
"repairqty",
"uomid",
"partconditiontemplateconditioncode",
"installedcomponent",
"standardUserDefinedFields"
})
@XmlRootElement(name = "BinStock")
public class BinStock {
@XmlElement(name = "PARTID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected PARTID_Type partid;
@XmlElement(name = "STOREID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected STOREID_Type storeid;
@XmlElement(name = "BIN", namespace = "http://schemas.datastream.net/MP_fields")
protected String bin;
@XmlElement(name = "LOT", namespace = "http://schemas.datastream.net/MP_fields")
protected String lot;
@XmlElement(name = "PRICE", namespace = "http://schemas.datastream.net/MP_fields")
protected AMOUNT price;
@XmlElement(name = "QTYONHAND", namespace = "http://schemas.datastream.net/MP_fields")
protected AMOUNT qtyonhand;
@XmlElement(name = "BYASSET", namespace = "http://schemas.datastream.net/MP_fields")
protected String byasset;
@XmlElement(name = "REPAIRQTY", namespace = "http://schemas.datastream.net/MP_fields")
protected QUANTITY repairqty;
@XmlElement(name = "UOMID", namespace = "http://schemas.datastream.net/MP_fields")
protected UOMID_Type uomid;
@XmlElement(name = "PARTCONDITIONTEMPLATECONDITIONCODE", namespace = "http://schemas.datastream.net/MP_fields")
protected String partconditiontemplateconditioncode;
@XmlElement(name = "INSTALLEDCOMPONENT", namespace = "http://schemas.datastream.net/MP_fields")
protected String installedcomponent;
@XmlElement(name = "StandardUserDefinedFields", namespace = "http://schemas.datastream.net/MP_fields")
protected StandardUserDefinedFields standardUserDefinedFields;
@XmlAttribute(name = "recordid")
protected Long recordid;
@XmlAttribute(name = "user_entity")
protected String user_Entity;
@XmlAttribute(name = "system_entity")
protected String system_Entity;
/**
* Obtient la valeur de la propriété partid.
*
* @return
* possible object is
* {@link PARTID_Type }
*
*/
public PARTID_Type getPARTID() {
return partid;
}
/**
* Définit la valeur de la propriété partid.
*
* @param value
* allowed object is
* {@link PARTID_Type }
*
*/
public void setPARTID(PARTID_Type value) {
this.partid = value;
}
/**
* Obtient la valeur de la propriété storeid.
*
* @return
* possible object is
* {@link STOREID_Type }
*
*/
public STOREID_Type getSTOREID() {
return storeid;
}
/**
* Définit la valeur de la propriété storeid.
*
* @param value
* allowed object is
* {@link STOREID_Type }
*
*/
public void setSTOREID(STOREID_Type value) {
this.storeid = value;
}
/**
* Obtient la valeur de la propriété bin.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBIN() {
return bin;
}
/**
* Définit la valeur de la propriété bin.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBIN(String value) {
this.bin = value;
}
/**
* Obtient la valeur de la propriété lot.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLOT() {
return lot;
}
/**
* Définit la valeur de la propriété lot.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLOT(String value) {
this.lot = value;
}
/**
* Obtient la valeur de la propriété price.
*
* @return
* possible object is
* {@link AMOUNT }
*
*/
public AMOUNT getPRICE() {
return price;
}
/**
* Définit la valeur de la propriété price.
*
* @param value
* allowed object is
* {@link AMOUNT }
*
*/
public void setPRICE(AMOUNT value) {
this.price = value;
}
/**
* Obtient la valeur de la propriété qtyonhand.
*
* @return
* possible object is
* {@link AMOUNT }
*
*/
public AMOUNT getQTYONHAND() {
return qtyonhand;
}
/**
* Définit la valeur de la propriété qtyonhand.
*
* @param value
* allowed object is
* {@link AMOUNT }
*
*/
public void setQTYONHAND(AMOUNT value) {
this.qtyonhand = value;
}
/**
* Obtient la valeur de la propriété byasset.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBYASSET() {
return byasset;
}
/**
* Définit la valeur de la propriété byasset.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBYASSET(String value) {
this.byasset = value;
}
/**
* Obtient la valeur de la propriété repairqty.
*
* @return
* possible object is
* {@link QUANTITY }
*
*/
public QUANTITY getREPAIRQTY() {
return repairqty;
}
/**
* Définit la valeur de la propriété repairqty.
*
* @param value
* allowed object is
* {@link QUANTITY }
*
*/
public void setREPAIRQTY(QUANTITY value) {
this.repairqty = value;
}
/**
* Obtient la valeur de la propriété uomid.
*
* @return
* possible object is
* {@link UOMID_Type }
*
*/
public UOMID_Type getUOMID() {
return uomid;
}
/**
* Définit la valeur de la propriété uomid.
*
* @param value
* allowed object is
* {@link UOMID_Type }
*
*/
public void setUOMID(UOMID_Type value) {
this.uomid = value;
}
/**
* Obtient la valeur de la propriété partconditiontemplateconditioncode.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPARTCONDITIONTEMPLATECONDITIONCODE() {
return partconditiontemplateconditioncode;
}
/**
* Définit la valeur de la propriété partconditiontemplateconditioncode.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPARTCONDITIONTEMPLATECONDITIONCODE(String value) {
this.partconditiontemplateconditioncode = value;
}
/**
* Obtient la valeur de la propriété installedcomponent.
*
* @return
* possible object is
* {@link String }
*
*/
public String getINSTALLEDCOMPONENT() {
return installedcomponent;
}
/**
* Définit la valeur de la propriété installedcomponent.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setINSTALLEDCOMPONENT(String value) {
this.installedcomponent = value;
}
/**
* Obtient la valeur de la propriété standardUserDefinedFields.
*
* @return
* possible object is
* {@link StandardUserDefinedFields }
*
*/
public StandardUserDefinedFields getStandardUserDefinedFields() {
return standardUserDefinedFields;
}
/**
* Définit la valeur de la propriété standardUserDefinedFields.
*
* @param value
* allowed object is
* {@link StandardUserDefinedFields }
*
*/
public void setStandardUserDefinedFields(StandardUserDefinedFields value) {
this.standardUserDefinedFields = 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;
}
/**
* Obtient la valeur de la propriété user_Entity.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUser_Entity() {
return user_Entity;
}
/**
* Définit la valeur de la propriété user_Entity.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUser_Entity(String value) {
this.user_Entity = value;
}
/**
* Obtient la valeur de la propriété system_Entity.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSystem_Entity() {
return system_Entity;
}
/**
* Définit la valeur de la propriété system_Entity.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSystem_Entity(String value) {
this.system_Entity = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy