廖井涛
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
package com.northglass.entity;
 
import javax.persistence.Entity;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
 
@Entity
@Table(name="gmms_machine_dispose")
public class MachineDispose extends IdEntity{
 
    private String plcFontType;
    private String plcFontValue;
    private String mesFontType;
    private String mesFontValue;
    private String returnValue;
    private String logic;
    private String remarks;
    
    private MachineType machineType;
    
    public MachineDispose() {      
    } 
    /*public MachineDispose(
            Machines machine,
            String plcFontType,
            String plcFontValue,
            String mesFontType,
            String mesFontValue,
            String returnValue,
            String exeLogic,
            String describ) {
        this.machine=machine;
        this.plcFontType=plcFontType;
        this.plcFontValue=plcFontValue;
        this.mesFontType=mesFontType;
        this.mesFontValue=mesFontValue;
        this.returnValue=returnValue;
        this.exeLogic=exeLogic;
        this.describ=describ;
    }*/
 
    
    public String getPlcFontType() {
        return plcFontType;
    }
    public void setPlcFontType(String plcFontType) {
        this.plcFontType = plcFontType;
    }
    public String getPlcFontValue() {
        return plcFontValue;
    }
    public void setPlcFontValue(String plcFontValue) {
        this.plcFontValue = plcFontValue;
    }
    
    
    public String getMesFontType() {
        return mesFontType;
    }
 
    public void setMesFontType(String mesFontType) {
        this.mesFontType = mesFontType;
    }
    public String getMesFontValue() {
        return mesFontValue;
    }
 
    public void setMesFontValue(String mesFontValue) {
        this.mesFontValue = mesFontValue;
    }
    
    
    public String getReturnValue() {
        return returnValue;
    }
 
    public void setReturnValue(String returnValue) {
        this.returnValue = returnValue;
    }
    
    public String getLogic() {
        return logic;
    }
 
    public void setLogic(String logic) {
        this.logic = logic;
    }
    
    public String getRemarks() {
        return remarks;
    }
 
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }    
    
    @ManyToOne
    @JoinColumn(name="machine_type_id")
    public MachineType getMachineType() {
        return machineType;
    }
 
    public void setMachineType(MachineType machineType) {
        this.machineType = machineType;
    }
 
}