package com.northglass.entity;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
import javax.persistence.Transient;
|
|
import com.northglass.listener.ServerConnection;
|
|
@Entity
|
@Table(name="gmms_print_size")
|
public class PrintSize extends IdEntity {
|
|
private int apartidsize;
|
private int apartidw;
|
private int apartidh;
|
private int customersize;
|
private int customerw;
|
private int customerh;
|
private int productionsize;
|
private int productionw;
|
private int productionh;
|
private int lengthStrsize;
|
private int lengthStrw;
|
private int lengthStrh;
|
private int applicationsize;
|
private int applicationw;
|
private int applicationh;
|
private int length;
|
private int width;
|
|
public PrintSize(){
|
}
|
|
private ServerConnection serverConnection = new ServerConnection();
|
|
|
@Transient
|
public ServerConnection getServerConnection() {
|
return serverConnection;
|
}
|
|
public void setServerConnection(ServerConnection serverConnection) {
|
this.serverConnection = serverConnection;
|
}
|
|
public int getApartidsize() {
|
return apartidsize;
|
}
|
|
public void setApartidsize(int apartidsize) {
|
this.apartidsize = apartidsize;
|
}
|
|
public int getApartidw() {
|
return apartidw;
|
}
|
|
public void setApartidw(int apartidw) {
|
this.apartidw = apartidw;
|
}
|
|
public int getApartidh() {
|
return apartidh;
|
}
|
|
public void setApartidh(int apartidh) {
|
this.apartidh = apartidh;
|
}
|
|
public int getCustomersize() {
|
return customersize;
|
}
|
|
public void setCustomersize(int customersize) {
|
this.customersize = customersize;
|
}
|
|
public int getCustomerw() {
|
return customerw;
|
}
|
|
public void setCustomerw(int customerw) {
|
this.customerw = customerw;
|
}
|
|
public int getCustomerh() {
|
return customerh;
|
}
|
|
public void setCustomerh(int customerh) {
|
this.customerh = customerh;
|
}
|
|
public int getProductionsize() {
|
return productionsize;
|
}
|
|
public void setProductionsize(int productionsize) {
|
this.productionsize = productionsize;
|
}
|
|
public int getProductionw() {
|
return productionw;
|
}
|
|
public void setProductionw(int productionw) {
|
this.productionw = productionw;
|
}
|
|
public int getProductionh() {
|
return productionh;
|
}
|
|
public void setProductionh(int productionh) {
|
this.productionh = productionh;
|
}
|
|
public int getLengthStrsize() {
|
return lengthStrsize;
|
}
|
|
public void setLengthStrsize(int lengthStrsize) {
|
this.lengthStrsize = lengthStrsize;
|
}
|
|
public int getLengthStrw() {
|
return lengthStrw;
|
}
|
|
public void setLengthStrw(int lengthStrw) {
|
this.lengthStrw = lengthStrw;
|
}
|
|
public int getLengthStrh() {
|
return lengthStrh;
|
}
|
|
public void setLengthStrh(int lengthStrh) {
|
this.lengthStrh = lengthStrh;
|
}
|
|
public int getApplicationsize() {
|
return applicationsize;
|
}
|
|
public void setApplicationsize(int applicationsize) {
|
this.applicationsize = applicationsize;
|
}
|
|
public int getApplicationw() {
|
return applicationw;
|
}
|
|
public void setApplicationw(int applicationw) {
|
this.applicationw = applicationw;
|
}
|
|
public int getApplicationh() {
|
return applicationh;
|
}
|
|
public void setApplicationh(int applicationh) {
|
this.applicationh = applicationh;
|
}
|
|
public int getLength() {
|
return length;
|
}
|
|
public void setLength(int length) {
|
this.length = length;
|
}
|
|
public int getWidth() {
|
return width;
|
}
|
|
public void setWidth(int width) {
|
this.width = width;
|
}
|
|
|
}
|