app/src/main/java/safeluck/drive/evaluation/bean/RTKInfoBean.java
@@ -168,4 +168,25 @@
    public void setTrack_ture(double track_ture) {
        this.track_ture = track_ture;
    }
    @Override
    public String toString() {
        return "RTKInfoBean{" +
                "utc='" + utc + '\'' +
                ", qf=" + qf +
                ", coord_x=" + coord_x +
                ", coord_x_dir='" + coord_x_dir + '\'' +
                ", coord_y=" + coord_y +
                ", coord_y_dir='" + coord_y_dir + '\'' +
                ", heading=" + heading +
                ", pitch=" + pitch +
                ", roll=" + roll +
                ", sat_num=" + sat_num +
                ", latitude=" + latitude +
                ", longitude=" + longitude +
                ", altitude=" + altitude +
                ", speed=" + speed +
                ", track_ture=" + track_ture +
                '}';
    }
}