廖井涛
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
package com.northglass.entity;
 
import java.util.Date;
 
import javax.persistence.Entity;
import javax.persistence.Table;
 
@Entity
@Table(name="gmms_drop_frame_2")
public class DropFrame2 extends IdEntity{
 
    private String dropFrame;
    private String processcardId;
    private String engineeringId;
    private String state;
    private int processcardCount;
    private int surplusCount;
    private int stops;
    private Long groups;
    private String noodles;
    private int flag;
    
    
 
    
    public String getDropFrame() {
        return dropFrame;
    }
    public void setDropFrame(String dropFrame) {
        this.dropFrame = dropFrame;
    }
    public String getProcesscardId() {
        return processcardId;
    }
    public void setProcesscardId(String processcardId) {
        this.processcardId = processcardId;
    }
    
    
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
    public String getEngineeringId() {
        return engineeringId;
    }
 
    public void setEngineeringId(String engineeringId) {
        this.engineeringId = engineeringId;
    }
    
    public String getNoodles() {
        return noodles;
    }
 
    public void setNoodles(String noodles) {
        this.noodles = noodles;
    }
    
    
    public int getProcesscardCount() {
        return processcardCount;
    }
 
    public void setProcesscardCount(int processcardCount) {
        this.processcardCount = processcardCount;
    }
    
    public int getSurplusCount() {
        return surplusCount;
    }
 
    public void setSurplusCount(int surplusCount) {
        this.surplusCount = surplusCount;
    }
    
    public int getStops() {
        return stops;
    }
 
    public void setStops(int stops) {
        this.stops = stops;
    }
    
    public Long getGroups() {
        return groups;
    }
 
    public void setGroups(Long groups) {
        this.groups = groups;
    }
    
    public int getFlag() {
        return flag;
    }
 
    public void setFlag(int flag) {
        this.flag = flag;
    }
        
 
}