jiazx0107@163.com
2023-12-24 b7edb0f3526d5ca32016d5f332ddf957d74c01c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.fzzy.protocol.youxian0.data;
 
import lombok.Getter;
import lombok.Setter;
 
@Getter
@Setter
public class GrainRoot {
 
    private long time = System.currentTimeMillis();
 
    private int num;
 
    //逗号隔开的温度值
    private String points;
 
    private String key;
 
}