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

net.datastream.schemas.mp_fields.BINSTOCKID Maven / Gradle / Ivy

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

package net.datastream.schemas.mp_fields;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

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}PARTID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}STOREID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}BIN"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}LOT"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "partid", "storeid", "bin", "lot" }) @XmlRootElement(name = "BINSTOCKID") public class BINSTOCKID { @XmlElement(name = "PARTID", required = true) protected PARTID_Type partid; @XmlElement(name = "STOREID", required = true) protected STOREID_Type storeid; @XmlElement(name = "BIN", required = true) protected String bin; @XmlElement(name = "LOT", required = true) protected String lot; /** * 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 storeid property. * * @return * possible object is * {@link STOREID_Type } * */ public STOREID_Type getSTOREID() { return storeid; } /** * Sets the value of the storeid property. * * @param value * allowed object is * {@link STOREID_Type } * */ public void setSTOREID(STOREID_Type value) { this.storeid = value; } /** * Gets the value of the bin property. * * @return * possible object is * {@link String } * */ public String getBIN() { return bin; } /** * Sets the value of the bin property. * * @param value * allowed object is * {@link String } * */ public void setBIN(String value) { this.bin = value; } /** * Gets the value of the lot property. * * @return * possible object is * {@link String } * */ public String getLOT() { return lot; } /** * Sets the value of the lot property. * * @param value * allowed object is * {@link String } * */ public void setLOT(String value) { this.lot = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy