feiyu02
2025-05-08 9a9a27f185bc0cf9dc0001cfc6839e6d13dbccd9
src/main/kotlin/com/flightfeather/uav/domain/entity/GridGroup.java
@@ -58,6 +58,18 @@
    private Integer fatherGroupId;
    /**
     * 最大横坐标
     */
    @Column(name = "max_xaxis")
    private Integer maxXaxis;
    /**
     * 最大纵坐标
     */
    @Column(name = "max_yaxis")
    private Integer maxYaxis;
    /**
     * @return id
     */
    public Integer getId() {
@@ -268,4 +280,40 @@
    public void setFatherGroupId(Integer fatherGroupId) {
        this.fatherGroupId = fatherGroupId;
    }
    /**
     * 获取最大横坐标
     *
     * @return max_xaxis - 最大横坐标
     */
    public Integer getMaxXaxis() {
        return maxXaxis;
    }
    /**
     * 设置最大横坐标
     *
     * @param maxXaxis 最大横坐标
     */
    public void setMaxXaxis(Integer maxXaxis) {
        this.maxXaxis = maxXaxis;
    }
    /**
     * 获取最大纵坐标
     *
     * @return max_yaxis - 最大纵坐标
     */
    public Integer getMaxYaxis() {
        return maxYaxis;
    }
    /**
     * 设置最大纵坐标
     *
     * @param maxYaxis 最大纵坐标
     */
    public void setMaxYaxis(Integer maxYaxis) {
        this.maxYaxis = maxYaxis;
    }
}