package com.northglass.entity;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name="gmms_edge_machine")
|
public class EdgeMachine extends Machine {
|
private String ipAddress;
|
public EdgeMachine() {
|
}
|
|
public EdgeMachine(String number, String state, String connectState, int port) {
|
super(number, state, connectState, port);
|
}
|
|
public String getIpAddress() {
|
return ipAddress;
|
}
|
|
public void setIpAddress(String ipAddress) {
|
this.ipAddress = ipAddress;
|
}
|
|
}
|