jiazx0107@163.com
2023-12-24 8efb5a8cd2c8a6b40e58f4f3fb851d54cf415af9
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;
 
}