dubin
1 天以前 df407d0f867f5063895be21fde14963b0ae4776e
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;
 
}