package com.ruoyi.system.domain;
|
|
import com.ruoyi.common.annotation.Excel;
|
import com.ruoyi.common.core.domain.BaseEntity;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
import java.util.Date;
|
|
/**
|
* GPS配置对象 sys_gps_config
|
*/
|
public class SysGpsConfig extends BaseEntity {
|
private static final long serialVersionUID = 1L;
|
|
/** 配置ID */
|
private Long configId;
|
|
/** 配置键值 */
|
@Excel(name = "配置键值")
|
private String configKey;
|
|
/** 服务域名 */
|
@Excel(name = "服务域名")
|
private String domain;
|
|
/** 用户名 */
|
@Excel(name = "用户名")
|
private String username;
|
|
/** 密码 */
|
@Excel(name = "密码")
|
private String password;
|
|
/** 访问令牌 */
|
private String token;
|
|
/** 令牌过期时间 */
|
private Date tokenExpireTime;
|
|
/** 最后查询位置时间 */
|
@Excel(name = "最后查询位置时间")
|
private Long lastquerypositiontime;
|
|
public void setConfigId(Long configId) {
|
this.configId = configId;
|
}
|
|
public Long getConfigId() {
|
return configId;
|
}
|
|
public void setConfigKey(String configKey) {
|
this.configKey = configKey;
|
}
|
|
public String getConfigKey() {
|
return configKey;
|
}
|
|
public void setDomain(String domain) {
|
this.domain = domain;
|
}
|
|
public String getDomain() {
|
return domain;
|
}
|
|
public void setUsername(String username) {
|
this.username = username;
|
}
|
|
public String getUsername() {
|
return username;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setToken(String token) {
|
this.token = token;
|
}
|
|
public String getToken() {
|
return token;
|
}
|
|
public void setTokenExpireTime(Date tokenExpireTime) {
|
this.tokenExpireTime = tokenExpireTime;
|
}
|
|
public Date getTokenExpireTime() {
|
return tokenExpireTime;
|
}
|
|
public Long getLastquerypositiontime() {
|
return lastquerypositiontime;
|
}
|
|
public void setLastquerypositiontime(Long lastquerypositiontime) {
|
this.lastquerypositiontime = lastquerypositiontime;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
.append("configId", getConfigId())
|
.append("configKey", getConfigKey())
|
.append("domain", getDomain())
|
.append("username", getUsername())
|
.append("password", getPassword())
|
.append("token", getToken())
|
.append("tokenExpireTime", getTokenExpireTime())
|
.append("lastquerypositiontime", getLastquerypositiontime())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.toString();
|
}
|
}
|