Junjie
2025-05-22 32b593115da09714624f3803fc43a6add07da391
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();
    }
}