| | |
| | | public class GrainDataDetail { |
| | | |
| | | //根号 |
| | | private int cableNum; |
| | | private String cableNum; |
| | | |
| | | //层号 |
| | | private int layerNumber; |
| | | private String layerNumber; |
| | | |
| | | //索引 |
| | | private int position; |
| | | private String position; |
| | | |
| | | //温度值 |
| | | private String temperature; |
| | |
| | | } |
| | | |
| | | public GrainDataDetail(int cableNum, int layerNumber, int position, String temperature) { |
| | | this.cableNum = cableNum; |
| | | this.layerNumber = layerNumber; |
| | | this.position = position; |
| | | this.cableNum = cableNum + ""; |
| | | this.layerNumber = layerNumber + ""; |
| | | this.position = position + ""; |
| | | this.temperature = temperature; |
| | | } |
| | | } |