package com.whyc.dto; import java.util.List; /** * 温度坐标,用于定义极值温度的x,y坐标 */ public class TempPoint { private Float temp; private List points; public Float getTemp() { return temp; } public void setTemp(Float temp) { this.temp = temp; } public List getPoints() { return points; } public void setPoints(List points) { this.points = points; } @Override public String toString() { return "TempPoint{" + "temp=" + temp + ", points=" + points + '}'; } }