package com.ruoyi.system.domain;
|
|
import java.io.Serializable;
|
|
/**
|
* GPS设备信息
|
*/
|
public class GpsDevice implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/** 设备序列号 */
|
private String deviceid;
|
|
/** 设备名称 */
|
private String devicename;
|
|
/** 设备类型 */
|
private Integer devicetype;
|
|
/** SIM号码 */
|
private String simnum;
|
|
/** 过期时间 */
|
private Long overduetime;
|
|
/** 到期通知时间 */
|
private Long expirenotifytime;
|
|
/** 备注 */
|
private String remark;
|
|
/** 创建者 */
|
private String creater;
|
|
/** 视频通道数 */
|
private Integer videochannelcount;
|
|
/** 最后活动时间 */
|
private Long lastactivetime;
|
|
/** 使用状态 */
|
private Integer isfree;
|
|
/** 是否允许编辑 */
|
private Integer allowedit;
|
|
/** 图标 */
|
private Integer icon;
|
|
/** 是否关注 */
|
private Integer stared;
|
|
/** 登录名称 */
|
private String loginname;
|
|
public String getDeviceid() {
|
return deviceid;
|
}
|
|
public void setDeviceid(String deviceid) {
|
this.deviceid = deviceid;
|
}
|
|
public String getDevicename() {
|
return devicename;
|
}
|
|
public void setDevicename(String devicename) {
|
this.devicename = devicename;
|
}
|
|
public Integer getDevicetype() {
|
return devicetype;
|
}
|
|
public void setDevicetype(Integer devicetype) {
|
this.devicetype = devicetype;
|
}
|
|
public String getSimnum() {
|
return simnum;
|
}
|
|
public void setSimnum(String simnum) {
|
this.simnum = simnum;
|
}
|
|
public Long getOverduetime() {
|
return overduetime;
|
}
|
|
public void setOverduetime(Long overduetime) {
|
this.overduetime = overduetime;
|
}
|
|
public Long getExpirenotifytime() {
|
return expirenotifytime;
|
}
|
|
public void setExpirenotifytime(Long expirenotifytime) {
|
this.expirenotifytime = expirenotifytime;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getCreater() {
|
return creater;
|
}
|
|
public void setCreater(String creater) {
|
this.creater = creater;
|
}
|
|
public Integer getVideochannelcount() {
|
return videochannelcount;
|
}
|
|
public void setVideochannelcount(Integer videochannelcount) {
|
this.videochannelcount = videochannelcount;
|
}
|
|
public Long getLastactivetime() {
|
return lastactivetime;
|
}
|
|
public void setLastactivetime(Long lastactivetime) {
|
this.lastactivetime = lastactivetime;
|
}
|
|
public Integer getIsfree() {
|
return isfree;
|
}
|
|
public void setIsfree(Integer isfree) {
|
this.isfree = isfree;
|
}
|
|
public Integer getAllowedit() {
|
return allowedit;
|
}
|
|
public void setAllowedit(Integer allowedit) {
|
this.allowedit = allowedit;
|
}
|
|
public Integer getIcon() {
|
return icon;
|
}
|
|
public void setIcon(Integer icon) {
|
this.icon = icon;
|
}
|
|
public Integer getStared() {
|
return stared;
|
}
|
|
public void setStared(Integer stared) {
|
this.stared = stared;
|
}
|
|
public String getLoginname() {
|
return loginname;
|
}
|
|
public void setLoginname(String loginname) {
|
this.loginname = loginname;
|
}
|
}
|