package org.sxkj.odm.entity; import lombok.Data; @Data public class MyPoint { private Double x; private Double y; public MyPoint(Double x, Double y) { this.x = x; this.y = y; } public MyPoint() { } }