package com.northglass.entity;
|
|
import java.util.Date;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name="gmms_cutmanage")
|
public class Cutmanagedetailis extends IdEntity{
|
|
private double width;
|
private double height;
|
private double thickness;
|
private String color;
|
private int pieces;
|
private long groups;
|
private Date statrtime;
|
private String engineeringId;
|
private String batchId;
|
private Date productionTime;
|
private Date warehousingTime;
|
private String dengluname;
|
|
|
|
|
public double getWidth() {
|
return width;
|
}
|
public void setWidth(double width) {
|
this.width = width;
|
}
|
public double getHeight() {
|
return height;
|
}
|
public void setHeight(double height) {
|
this.height = height;
|
}
|
|
|
public double getThickness() {
|
return thickness;
|
}
|
|
public void setThickness(double thickness) {
|
this.thickness = thickness;
|
}
|
public String getColor() {
|
return color;
|
}
|
|
public void setColor(String color) {
|
this.color = color;
|
}
|
|
public int getPieces() {
|
return pieces;
|
}
|
|
public void setPieces(int pieces) {
|
this.pieces = pieces;
|
}
|
|
|
|
|
public long getGroups() {
|
return groups;
|
}
|
|
public void setGroups(long groups) {
|
this.groups = groups;
|
}
|
|
public Date getStatrtime() {
|
return statrtime;
|
}
|
|
public void setStatrtime(Date statrtime) {
|
this.statrtime = statrtime;
|
}
|
public Date getProductionTime() {
|
return productionTime;
|
}
|
|
public void setProductionTime(Date productionTime) {
|
this.productionTime = productionTime;
|
}
|
public Date getWarehousingTime() {
|
return warehousingTime;
|
}
|
|
public void setWarehousingTime(Date warehousingTime) {
|
this.warehousingTime = warehousingTime;
|
}
|
|
public String getEngineeringId() {
|
return engineeringId;
|
}
|
|
public void setEngineeringId(String engineeringId) {
|
this.engineeringId = engineeringId;
|
}
|
|
public String getBatchId() {
|
return batchId;
|
}
|
|
public void setBatchId(String batchId) {
|
this.batchId = batchId;
|
}
|
|
public String getDengluname() {
|
return dengluname;
|
}
|
|
public void setDengluname(String dengluname) {
|
this.dengluname = dengluname;
|
}
|
|
|
}
|