648540858
2023-03-23 a4328e3d4fe2894c0ddf378eea9b3c2a3498d62b
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
package com.genersoft.iot.vmp.service.bean;
 
 
public class StreamPushItemFromRedis {
    private String app;
    private String stream;
    private long timeStamp;
 
    public String getApp() {
        return app;
    }
 
    public void setApp(String app) {
        this.app = app;
    }
 
    public String getStream() {
        return stream;
    }
 
    public void setStream(String stream) {
        this.stream = stream;
    }
 
    public long getTimeStamp() {
        return timeStamp;
    }
 
    public void setTimeStamp(long timeStamp) {
        this.timeStamp = timeStamp;
    }
}