wuyouming666
2023-12-12 69d6f1711a32ba4d1a989fef6b3640ff5ae4f2e2
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
package com.example.springboot.entity;
//玻璃信息表
public class Glass {
  private Integer id;//自增id
  private String orderId;//订单id
  private double width;//宽度
  private double height;//高度
  private String glassId;//玻璃id
 
  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 void getWidth(double width) {
    this.width = width;
  }
 
  public String getGlassId() {
    return glassId;
  }
 
  public void setGlassId(String glassId) {
    this.glassId = glassId;
  }
 
}