严智鑫
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
package com.northglass.entity;
 
import java.util.ArrayList;
import java.util.List;
 
public class OPattern {
 
    private int width;
    private int height;
    private int trimLeft;
    private int trimBottom;
    
    private List<Step> steps = new ArrayList<Step>();
    private List<Cutting> cuttings = new ArrayList<Cutting>();
    private List<Info> infos = new ArrayList<Info>();
    private List<Shape> shapes = new ArrayList<Shape>();
    
    public int getWidth() {
        return width;
    }
 
    public void setWidth(int width) {
        this.width = width;
    }
 
    public int getHeight() {
        return height;
    }
 
    public void setHeight(int height) {
        this.height = height;
    }
 
    public int getTrimLeft() {
        return trimLeft;
    }
 
    public void setTrimLeft(int trimLeft) {
        this.trimLeft = trimLeft;
    }
 
    public int getTrimBottom() {
        return trimBottom;
    }
 
    public void setTrimBottom(int trimBottom) {
        this.trimBottom = trimBottom;
    }
 
    public List<Step> getSteps() {
        return steps;
    }
 
    public void setSteps(List<Step> steps) {
        this.steps = steps;
    }
 
    public void addStep(Step step) {
        this.steps.add(step);
    }
    
    public List<Cutting> getCuttings() {
        return cuttings;
    }
 
    public void setCuttings(List<Cutting> cuttings) {
        this.cuttings = cuttings;
    }
 
    public void addCutting(Cutting cutting) {
        this.cuttings.add(cutting);
    }
    
    public List<Info> getInfos() {
        return infos;
    }
 
    public void setInfos(List<Info> infos) {
        this.infos = infos;
    }
    
    public void addInfo(Info info) {
        this.infos.add(info);
    }
 
    public List<Shape> getShapes() {
        return shapes;
    }
 
    public void setShapes(List<Shape> shapes) {
        this.shapes = shapes;
    }
    
    public void addShape(Shape shape) {
        this.shapes.add(shape);
    }
}