123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.yihu.hos.models;
- import org.springframework.data.annotation.Id;
- import java.util.Date;
- /**
- * @created Airhead 2016/7/27.
- */
- public class BrokerServer {
- @Id
- private String id;
- private String host;
- private int port;
- private Date updatTime;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getHost() {
- return host;
- }
- public void setHost(String host) {
- this.host = host;
- }
- public int getPort() {
- return port;
- }
- public void setPort(int port) {
- this.port = port;
- }
- public Date getUpdatTime() {
- return updatTime;
- }
- public void setUpdatTime(Date updatTime) {
- this.updatTime = updatTime;
- }
- }
|