wuyouming666
2023-11-21 be244a9e202ef069ccb57040ffbec59c89d40cfd
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
package com.example.springboot.entity;
 
public class Glass {
    private Integer id;
    private String orderId;
    private double width;
    private double height;
    private String glassId;
 
    public Integer id() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getId() {
        return id;
    }
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
 
    public double getwidth() {
        return width;
    }
 
    public void setHeight(double height) {
        this.height = height;
    }
 
    public double getHeight() {
        return height;
    }
 
    public void setWidth(double width) {
        this.width = width;
    }
 
 
    public double getWidth() {
        return width;
 
    }
 
    public String getGlassId() {
        return glassId;
    }
 
    public void setGlassId(String glassId) {
        this.glassId = glassId;
    }
 
}