package com.newvideo.domain;
|
|
public class DeviceInfo {
|
private String id;
|
private String devicename;
|
private String imei;
|
private String createtime;
|
|
public DeviceInfo() {
|
}
|
|
public DeviceInfo(String id) {
|
this.id = id;
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getDevicename() {
|
return devicename;
|
}
|
|
public void setDevicename(String devicename) {
|
this.devicename = devicename;
|
}
|
|
public String getImei() {
|
return imei;
|
}
|
|
public void setImei(String imei) {
|
this.imei = imei;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
}
|