Junjie
2025-05-24 760b6e0fbc3fe32fea1aacb39b91864f57c5ebae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.common.model;
 
import lombok.Data;
 
@Data
public class WatchModel {
 
    private String key;
 
    private String msg;
 
    private Long time;
 
    public WatchModel(String key, String msg) {
        this.key = key;
        this.msg = msg;
        this.time = System.currentTimeMillis();
    }
}