1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| package com.whyc.dto;
|
| import java.util.List;
|
| /**
| * 温度坐标,用于定义极值温度的x,y坐标
| */
| public class TempPoint {
| private Float temp;
| private List<Point> points;
|
| public Float getTemp() {
| return temp;
| }
|
| public void setTemp(Float temp) {
| this.temp = temp;
| }
|
| public List<Point> getPoints() {
| return points;
| }
|
| public void setPoints(List<Point> points) {
| this.points = points;
| }
|
| @Override
| public String toString() {
| return "TempPoint{" +
| "temp=" + temp +
| ", points=" + points +
| '}';
| }
| }
|
|