package com.northglass.entity;
|
|
import java.util.Date;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name="orderglassinfo")
|
public class OrderGlassInfo extends IdEntity {
|
//private String id;//id编号
|
private String orderNumber;
|
private String code;//编号
|
private double weight;//宽度
|
private double height;//高度
|
private int number;//数量
|
private String contractId;//合同号
|
private String processingDrawingNo;//加工图号
|
private String customerName;//客户名称
|
private double thickness;//厚度
|
private String colorMembraneSystem;//颜色膜系
|
private double areaMeasure;//面积
|
private String finishedProductName;//成品名称
|
private String orderSequenceNumber;//订单序号
|
private String projectName;//项目名
|
private double edgeGrinding;//磨边量
|
private double chamfer;//倒角
|
private String finishing;//精磨
|
private String remark;//明细备注
|
private String process;
|
private String thicknesses; //玻璃厚度结构
|
|
private String glassId; //序号
|
private String processCardId;
|
private String materialRackId;//架号
|
private String glassNo;
|
|
private String processRequiement; //加工要求
|
private String holeNumber; //孔数
|
private String floorNumber; //楼层号
|
private String barcode; //条码号
|
private Date deliveryDate; //交货日期
|
//private String rank_id; //架子ID
|
public OrderGlassInfo(){
|
}
|
|
public OrderGlassInfo(String orderNumber, String code, double weight, double height, int number, String contractId, String processingDrawingNo, String customerName, double thickness, String colorMembraneSystem, double areaMeasure, String finishedProductName, String orderSequenceNumber, String projectName, double edgeGrinding, double chamfer, String finishing, String remark) {
|
this.orderNumber = orderNumber;
|
this.code = code;
|
this.weight = weight;
|
this.height = height;
|
this.number = number;
|
this.contractId = contractId;
|
this.processingDrawingNo = processingDrawingNo;
|
this.customerName = customerName;
|
this.thickness = thickness;
|
this.colorMembraneSystem = colorMembraneSystem;
|
this.areaMeasure = areaMeasure;
|
this.finishedProductName = finishedProductName;
|
this.orderSequenceNumber = orderSequenceNumber;
|
this.projectName = projectName;
|
this.edgeGrinding = edgeGrinding;
|
this.chamfer = chamfer;
|
this.finishing = finishing;
|
this.remark = remark;
|
}
|
/* public String getid() {
|
return id;
|
}
|
|
public void setid(String id) {
|
this.id = id;
|
}*/
|
public String getOrderNumber() {
|
return orderNumber;
|
}
|
|
public void setOrderNumber(String orderNumber) {
|
this.orderNumber = orderNumber;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public double getWeight() {
|
return weight;
|
}
|
|
public void setWeight(double weight) {
|
this.weight = weight;
|
}
|
|
public double getHeight() {
|
return height;
|
}
|
|
public void setHeight(double height) {
|
this.height = height;
|
}
|
|
public int getNumber() {
|
return number;
|
}
|
|
public void setNumber(int number) {
|
this.number = number;
|
}
|
|
public String getContractId() {
|
return contractId;
|
}
|
|
public void setContractId(String contractId) {
|
this.contractId = contractId;
|
}
|
|
public String getProcessingDrawingNo() {
|
return processingDrawingNo;
|
}
|
|
public void setProcessingDrawingNo(String processingDrawingNo) {
|
this.processingDrawingNo = processingDrawingNo;
|
}
|
|
public String getCustomerName() {
|
return customerName;
|
}
|
|
public void setCustomerName(String customerName) {
|
this.customerName = customerName;
|
}
|
|
public double getThickness() {
|
return thickness;
|
}
|
|
public void setThickness(double thickness) {
|
this.thickness = thickness;
|
}
|
|
public String getColorMembraneSystem() {
|
return colorMembraneSystem;
|
}
|
|
public void setColorMembraneSystem(String colorMembraneSystem) {
|
this.colorMembraneSystem = colorMembraneSystem;
|
}
|
|
public double getAreaMeasure() {
|
return areaMeasure;
|
}
|
|
public void setAreaMeasure(double areaMeasure) {
|
this.areaMeasure = areaMeasure;
|
}
|
|
public String getFinishedProductName() {
|
return finishedProductName;
|
}
|
|
public void setFinishedProductName(String finishedProductName) {
|
this.finishedProductName = finishedProductName;
|
}
|
|
public String getOrderSequenceNumber() {
|
return orderSequenceNumber;
|
}
|
|
public void setOrderSequenceNumber(String orderSequenceNumber) {
|
this.orderSequenceNumber = orderSequenceNumber;
|
}
|
|
public String getProjectName() {
|
return projectName;
|
}
|
|
public void setProjectName(String projectName) {
|
this.projectName = projectName;
|
}
|
|
public double getEdgeGrinding() {
|
return edgeGrinding;
|
}
|
|
public void setEdgeGrinding(double edgeGrinding) {
|
this.edgeGrinding = edgeGrinding;
|
}
|
|
public double getChamfer() {
|
return chamfer;
|
}
|
|
public void setChamfer(double chamfer) {
|
this.chamfer = chamfer;
|
}
|
|
public String getFinishing() {
|
return finishing;
|
}
|
|
public void setFinishing(String finishing) {
|
this.finishing = finishing;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getProcess() {
|
return process;
|
}
|
|
public void setProcess(String process) {
|
this.process = process;
|
}
|
|
public String getThicknesses() {
|
return thicknesses;
|
}
|
|
public void setThicknesses(String thicknesses) {
|
this.thicknesses = thicknesses;
|
}
|
|
public String getGlassId() {
|
return glassId;
|
}
|
|
public void setGlassId(String glassId) {
|
this.glassId = glassId;
|
}
|
|
public String getProcessCardId() {
|
return processCardId;
|
}
|
|
public void setProcessCardId(String processCardId) {
|
this.processCardId = processCardId;
|
}
|
|
public String getMaterialRackId() {
|
return materialRackId;
|
}
|
|
public void setMaterialRackId(String materialRackId) {
|
this.materialRackId = materialRackId;
|
}
|
|
public String getGlassNo() {
|
return glassNo;
|
}
|
|
public void setGlassNo(String glassNo) {
|
this.glassNo = glassNo;
|
}
|
|
public String getProcessRequiement() {
|
return processRequiement;
|
}
|
|
public void setProcessRequiement(String processRequiement) {
|
this.processRequiement = processRequiement;
|
}
|
|
public String getHoleNumber() {
|
return holeNumber;
|
}
|
|
public void setHoleNumber(String holeNumber) {
|
this.holeNumber = holeNumber;
|
}
|
|
public String getFloorNumber() {
|
return floorNumber;
|
}
|
|
public void setFloorNumber(String floorNumber) {
|
this.floorNumber = floorNumber;
|
}
|
|
public String getBarcode() {
|
return barcode;
|
}
|
|
public void setBarcode(String barcode) {
|
this.barcode = barcode;
|
}
|
|
public Date getDeliveryDate() {
|
return deliveryDate;
|
}
|
|
public void setDeliveryDate(Date deliveryDate) {
|
this.deliveryDate = deliveryDate;
|
}
|
|
}
|