wzp
2025-09-03 a8553f9ef7e165b6348243af91caad1a987f8f9c
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
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;
    }