whycxzp
2025-04-18 b9e6c20168ddb9d8b0d6e7278e0b591f58319b56
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
36
37
38
39
package com.whyc.dto;
 
/**
 * 坐标点,用于定义极值温度的x,y坐标
 */
public class Point {
    private Integer x;
    private Integer y;
 
 
    public Point(Integer x, Integer y) {
        this.x = x;
        this.y = y;
    }
 
    public Integer getX() {
        return x;
    }
 
    public void setX(Integer x) {
        this.x = x;
    }
 
    public Integer getY() {
        return y;
    }
 
    public void setY(Integer y) {
        this.y = y;
    }
 
    @Override
    public String toString() {
        return "Point{" +
                "x=" + x +
                ", y=" + y +
                '}';
    }
}