廖井涛
2025-11-28 67f0be5a1d634ba3274fa9366ceacc3580f056b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
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;
    }
        
 
}