wlzboy
2025-09-21 b5b16a26de0d84d7b5fb69b584377bdc3582e3ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
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;
 
    /** 服务器ID */
    @Excel(name = "服务器ID")
    private Integer serverid;
 
    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;
    }
 
    public Integer getServerid() {
        return serverid;
    }
 
    public void setServerid(Integer serverid) {
        this.serverid = serverid;
    }
 
    @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("serverid", getServerid())
                .append("createBy", getCreateBy())
                .append("createTime", getCreateTime())
                .append("updateBy", getUpdateBy())
                .append("updateTime", getUpdateTime())
                .append("remark", getRemark())
                .toString();
    }