#
cl
1 天以前 97e704d52a980844af0268f41b09b177e4aa7268
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.core.model.protocol;
 
import lombok.Data;
 
@Data
public class TemperatureProtocol {
 
    private Integer deviceId;
 
    private Short temperature;
 
    private Short humidity;
 
}