严智鑫
2025-11-13 945bc394f40d8af1072a53da9a94f24207124e6d
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
package com.northglass.entity;
 
import javax.persistence.Entity;
import javax.persistence.Table;
 
@Entity
@Table(name = "gmms_glass_order")
public class GlassOrder extends IdEntity {//出现顺序等排列
    
    private double length;// 宽度
    private double width;// 高度
    private String state;
    private String apart_id;// 具体的落架号
    private String manufacture_batch;// 批次编号
    private int pieces;// 数量
    private int completePieces;//完成数量
    private int damagePieces;//破损数量
    private int sort;//排序
    private String rank;
 
    public GlassOrder() {
    }
 
    public GlassOrder(double length, double width ,
            String state, String apart_id, String manufacture_batch, int sort,int pieces, int completePieces,int damagePieces
        ) {
        super();
        this.length = length;
        this.width = width;
        this.state = state;
        this.apart_id = apart_id;
        this.manufacture_batch = manufacture_batch;
        this.sort = sort;
        this.pieces = pieces;
        this.completePieces = completePieces;
        this.damagePieces = damagePieces;
    }
 
    public int getSort() {
        return sort;
    }
 
    public void setSort(int sort) {
        this.sort = sort;
    }
 
    public double getLength() {
        return length;
    }
 
    public void setLength(double length) {
        this.length = length;
    }
 
    public double getWidth() {
        return width;
    }
 
    public void setWidth(double width) {
        this.width = width;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getApart_id() {
        return apart_id;
    }
 
    public void setApart_id(String apart_id) {
        this.apart_id = apart_id;
    }
 
    public String getManufacture_batch() {
        return manufacture_batch;
    }
 
    public void setManufacture_batch(String manufacture_batch) {
        this.manufacture_batch = manufacture_batch;
    }
 
    public int getPieces() {
        return pieces;
    }
 
    public void setPieces(int pieces) {
        this.pieces = pieces;
    }
 
    public int getCompletePieces() {
        return completePieces;
    }
 
    public int getDamagePieces() {
        return damagePieces;
    }
 
    public void setDamagePieces(int damagePieces) {
        this.damagePieces = damagePieces;
    }
 
    public void setCompletePieces(int completePieces) {
        this.completePieces = completePieces;
    }
 
    public String getRank() {
        return rank;
    }
 
    public void setRank(String rank) {
        this.rank = rank;
    }
 
}