41 lines
785 B
Plaintext
41 lines
785 B
Plaintext
package com.surfbird.socket.server.bean;
|
|
|
|
public class Client {
|
|
|
|
private String address; //地址.
|
|
private String code; //设备号.
|
|
private String mobile; //手机号.
|
|
private String port; //端口.
|
|
private String order; //指令.
|
|
|
|
public String getAddress() {
|
|
return address;
|
|
}
|
|
public void setAddress(String address) {
|
|
this.address = address;
|
|
}
|
|
public String getPort() {
|
|
return port;
|
|
}
|
|
public String getCode() {
|
|
return code;
|
|
}
|
|
public void setCode(String code) {
|
|
this.code = code;
|
|
}
|
|
public String getMobile() {
|
|
return mobile;
|
|
}
|
|
public void setMobile(String mobile) {
|
|
this.mobile = mobile;
|
|
}
|
|
public String getOrder() {
|
|
return order;
|
|
}
|
|
public void setOrder(String order) {
|
|
this.order = order;
|
|
}
|
|
public void setPort(String port) {
|
|
this.port = port;
|
|
}
|
|
} |