package com.fzzy.gateway.hx2023.data;
|
|
import lombok.Data;
|
|
/**
|
* 粮情信息详细
|
*/
|
@Data
|
public class GrainDataDetail {
|
|
//根号
|
private int cableNum;
|
|
//层号
|
private int layerNumber;
|
|
//索引
|
private int position;
|
|
//温度值
|
private String temperature;
|
|
public GrainDataDetail() {
|
}
|
|
public GrainDataDetail(int cableNum, int layerNumber, int position, String temperature) {
|
this.cableNum = cableNum;
|
this.layerNumber = layerNumber;
|
this.position = position;
|
this.temperature = temperature;
|
}
|
}
|