廖井涛
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
124
125
126
127
package com.northglass.entity;
 
 
 
import java.util.Date;
 
import javax.persistence.Entity;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
 
@Entity
@Table(name="gmms_pattern_task")
public class PatternTask extends IdEntity{
    private Long rank;
    private String rawType;
    private double rawWidth;
    private double rawHeight;
    private double rawThickness;
    private String workState;
    private String color;
    private String content;
    private Date finshTime;
    private Long groups;
    
    private Long taskId;
    private int flag;
    private RawFile rawFile;
   
    public int getFlag() {
        return flag;
    }
    public void setFlag(int flag) {
        this.flag = flag;
    }
    public Long getGroups() {
        return groups;
    }
    public void setGroups(Long groups) {
        this.groups = groups;
    }
    public Long getRank() {
        return rank;
    }
    public void setRank(Long rank) {
        this.rank = rank;
    }
    public Long getTaskId() {
        return taskId;
    }
    public void setTaskId(Long taskId) {
        this.taskId = taskId;
    }
    public String getRawType() {
        return rawType;
    }
    public void setRawType(String rawType) {
        this.rawType = rawType;
    }
    public String getWorkState() {
        return workState;
    }
    public void setWorkState(String workState) {
        this.workState = workState;
    }
    
    
    public String getColor() {
        return color;
    }
 
    public void setColor(String color) {
        this.color = color;
    }
    
    public double getRawWidth() {
        return rawWidth;
    }
 
    public void setRawWidth(double rawWidth) {
        this.rawWidth = rawWidth;
    }
    
    public double getRawHeight() {
        return rawHeight;
    }
 
    public void setRawHeight(double rawHeight) {
        this.rawHeight = rawHeight;
    }
    
    public double getRawThickness() {
        return rawThickness;
    }
 
    public void setRawThickness(double rawThickness) {
        this.rawThickness = rawThickness;
    }
    public String getContent() {
        return content;
    }
 
    public void setContent(String content) {
        this.content = content;
    }
    public Date getFinshTime() {
        return finshTime;
    }
 
    public void setFinshTime(Date finshTime) {
        this.finshTime = finshTime;
    }
    
    
    
    @ManyToOne
    @JoinColumn(name="raw_id")
    public RawFile getRawFile() {
        return rawFile;
    }
 
    public void setRawFile(RawFile rawFile) {
        this.rawFile = rawFile;
    }
    
 
}