package com.northglass.entity;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name = "gmms_glass_order")
|
public class GlassOrder extends IdEntity {//出现顺序等排列
|
|
private double length;// 宽度
|
private double width;// 高度
|
private String state;
|
private String apart_id;// 具体的落架号
|
private String manufacture_batch;// 批次编号
|
private int pieces;// 数量
|
private int completePieces;//完成数量
|
private int damagePieces;//破损数量
|
private int sort;//排序
|
private String rank;
|
|
public GlassOrder() {
|
}
|
|
public GlassOrder(double length, double width ,
|
String state, String apart_id, String manufacture_batch, int sort,int pieces, int completePieces,int damagePieces
|
) {
|
super();
|
this.length = length;
|
this.width = width;
|
this.state = state;
|
this.apart_id = apart_id;
|
this.manufacture_batch = manufacture_batch;
|
this.sort = sort;
|
this.pieces = pieces;
|
this.completePieces = completePieces;
|
this.damagePieces = damagePieces;
|
}
|
|
public int getSort() {
|
return sort;
|
}
|
|
public void setSort(int sort) {
|
this.sort = sort;
|
}
|
|
public double getLength() {
|
return length;
|
}
|
|
public void setLength(double length) {
|
this.length = length;
|
}
|
|
public double getWidth() {
|
return width;
|
}
|
|
public void setWidth(double width) {
|
this.width = width;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getApart_id() {
|
return apart_id;
|
}
|
|
public void setApart_id(String apart_id) {
|
this.apart_id = apart_id;
|
}
|
|
public String getManufacture_batch() {
|
return manufacture_batch;
|
}
|
|
public void setManufacture_batch(String manufacture_batch) {
|
this.manufacture_batch = manufacture_batch;
|
}
|
|
public int getPieces() {
|
return pieces;
|
}
|
|
public void setPieces(int pieces) {
|
this.pieces = pieces;
|
}
|
|
public int getCompletePieces() {
|
return completePieces;
|
}
|
|
public int getDamagePieces() {
|
return damagePieces;
|
}
|
|
public void setDamagePieces(int damagePieces) {
|
this.damagePieces = damagePieces;
|
}
|
|
public void setCompletePieces(int completePieces) {
|
this.completePieces = completePieces;
|
}
|
|
public String getRank() {
|
return rank;
|
}
|
|
public void setRank(String rank) {
|
this.rank = rank;
|
}
|
|
}
|