zc
2025-06-18 4967849c7b1744426a9a1fd12c807771f3211a28
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();
    }
}