wlzboy
2025-10-18 b46065a201c09ce69f111806f2bda4a5f476bc4e
ruoyi-system/src/main/java/com/ruoyi/system/domain/SysTaskLog.java
@@ -54,6 +54,46 @@
    @Excel(name = "IP地址")
    private String ipAddress;
    /** 纬度 */
    @Excel(name = "纬度")
    private Double latitude;
    /** 经度 */
    @Excel(name = "经度")
    private Double longitude;
    /** 位置地址 */
    @Excel(name = "位置地址")
    private String locationAddress;
    /** 省份 */
    @Excel(name = "省份")
    private String locationProvince;
    /** 城市 */
    @Excel(name = "城市")
    private String locationCity;
    /** 区县 */
    @Excel(name = "区县")
    private String locationDistrict;
    /** GPS精度(米) */
    @Excel(name = "GPS精度")
    private Double gpsAccuracy;
    /** 海拔高度(米) */
    @Excel(name = "海拔高度")
    private Double altitude;
    /** 速度(米/秒) */
    @Excel(name = "速度")
    private Double speed;
    /** 方向角度(0-360) */
    @Excel(name = "方向角度")
    private Double heading;
    public void setLogId(Long logId) {
        this.logId = logId;
    }
@@ -134,6 +174,86 @@
        return ipAddress;
    }
    public void setLatitude(Double latitude) {
        this.latitude = latitude;
    }
    public Double getLatitude() {
        return latitude;
    }
    public void setLongitude(Double longitude) {
        this.longitude = longitude;
    }
    public Double getLongitude() {
        return longitude;
    }
    public void setLocationAddress(String locationAddress) {
        this.locationAddress = locationAddress;
    }
    public String getLocationAddress() {
        return locationAddress;
    }
    public void setLocationProvince(String locationProvince) {
        this.locationProvince = locationProvince;
    }
    public String getLocationProvince() {
        return locationProvince;
    }
    public void setLocationCity(String locationCity) {
        this.locationCity = locationCity;
    }
    public String getLocationCity() {
        return locationCity;
    }
    public void setLocationDistrict(String locationDistrict) {
        this.locationDistrict = locationDistrict;
    }
    public String getLocationDistrict() {
        return locationDistrict;
    }
    public void setGpsAccuracy(Double gpsAccuracy) {
        this.gpsAccuracy = gpsAccuracy;
    }
    public Double getGpsAccuracy() {
        return gpsAccuracy;
    }
    public void setAltitude(Double altitude) {
        this.altitude = altitude;
    }
    public Double getAltitude() {
        return altitude;
    }
    public void setSpeed(Double speed) {
        this.speed = speed;
    }
    public Double getSpeed() {
        return speed;
    }
    public void setHeading(Double heading) {
        this.heading = heading;
    }
    public Double getHeading() {
        return heading;
    }
    @Override
    public String toString() {
        return "SysTaskLog{" +
@@ -147,6 +267,16 @@
                ", operatorName='" + operatorName + '\'' +
                ", operationTime=" + operationTime +
                ", ipAddress='" + ipAddress + '\'' +
                ", latitude=" + latitude +
                ", longitude=" + longitude +
                ", locationAddress='" + locationAddress + '\'' +
                ", locationProvince='" + locationProvince + '\'' +
                ", locationCity='" + locationCity + '\'' +
                ", locationDistrict='" + locationDistrict + '\'' +
                ", gpsAccuracy=" + gpsAccuracy +
                ", altitude=" + altitude +
                ", speed=" + speed +
                ", heading=" + heading +
                '}';
    }
}