package com.northglass.entity;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name="gmms_film_remove_machine")
|
public class FilmRemoveMachine extends IdEntity {
|
|
private String number;
|
private String state;
|
private String connectState;
|
private String pictureUrl;
|
private int port;
|
|
public FilmRemoveMachine() {
|
super();
|
// TODO Auto-generated constructor stub
|
}
|
|
public FilmRemoveMachine(String number, String state, String connectState,
|
int port) {
|
super();
|
this.number = number;
|
this.state = state;
|
this.connectState = connectState;
|
this.port = port;
|
}
|
|
public String getNumber() {
|
return number;
|
}
|
|
public void setNumber(String number) {
|
this.number = number;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getConnectState() {
|
return connectState;
|
}
|
|
public void setConnectState(String connectState) {
|
this.connectState = connectState;
|
}
|
|
public String getPictureUrl() {
|
return pictureUrl;
|
}
|
|
public void setPictureUrl(String pictureUrl) {
|
this.pictureUrl = pictureUrl;
|
}
|
|
public int getPort() {
|
return port;
|
}
|
|
public void setPort(int port) {
|
this.port = port;
|
}
|
}
|