package com.northglass.entity;
|
|
import javax.persistence.Entity;
|
|
@Entity
|
public class DummyRack extends IdEntity {
|
|
private String number;
|
private int pieces;
|
private double width;
|
private double length;
|
public DummyRack(){
|
|
}
|
public DummyRack(Double length,Double width,String number,int pieces){
|
this.length = length;
|
this.width = width;
|
this.number = number;
|
this.pieces = pieces;
|
}
|
public int getPieces() {
|
return pieces;
|
}
|
public void setPieces(int pieces) {
|
this.pieces = pieces;
|
}
|
public double getWidth() {
|
return width;
|
}
|
public void setWidth(double width) {
|
this.width = width;
|
}
|
public String getNumber() {
|
return number;
|
}
|
public void setNumber(String number) {
|
this.number = number;
|
}
|
public double getLength() {
|
return length;
|
}
|
public void setLength(double length) {
|
this.length = length;
|
}
|
|
}
|