package com.northglass.entity;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name="gmms_identify_machine")
|
public class IdentifyMachine extends Machine {
|
private String ipAddress;
|
|
public IdentifyMachine() { }
|
|
public IdentifyMachine(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;
|
}
|
|
|
|
}
|