package com.northglass.entity;
|
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name="gmms_machine_type")
|
public class MachineType extends IdEntity {
|
|
private String type;
|
private String typeName;
|
public MachineType() {
|
|
}
|
public MachineType(String type) {
|
this.type = type;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
public String getTypeName() {
|
return typeName;
|
}
|
|
public void setTypeName(String typeName) {
|
this.typeName = typeName;
|
}
|
|
}
|