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;
|
}
|
|
}
|