changes
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
|
||||
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
|
||||
// Any modifications to this file will be lost upon recompilation of the source schema.
|
||||
// Generated on: 2021.11.18 at 12:37:46 PM CET
|
||||
// Generated on: 2021.11.18 at 01:43:47 PM CET
|
||||
//
|
||||
|
||||
|
||||
@@ -26,7 +26,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <sequence>
|
||||
* <element name="id" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="material_id" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="package_number" type="{http://www.w3.org/2001/XMLSchema}int"/>
|
||||
* <element name="package_number" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="ean" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="unit_of_measure" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
* <element name="dimension" type="{http://www.w3.org/2001/XMLSchema}string"/>
|
||||
@@ -54,8 +54,8 @@ public class Package {
|
||||
protected int id;
|
||||
@XmlElement(name = "material_id")
|
||||
protected int materialId;
|
||||
@XmlElement(name = "package_number")
|
||||
protected int packageNumber;
|
||||
@XmlElement(name = "package_number", required = true)
|
||||
protected String packageNumber;
|
||||
@XmlElement(required = true)
|
||||
protected String ean;
|
||||
@XmlElement(name = "unit_of_measure", required = true)
|
||||
@@ -99,16 +99,24 @@ public class Package {
|
||||
/**
|
||||
* Gets the value of the packageNumber property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public int getPackageNumber() {
|
||||
public String getPackageNumber() {
|
||||
return packageNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the packageNumber property.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPackageNumber(int value) {
|
||||
public void setPackageNumber(String value) {
|
||||
this.packageNumber = value;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user