From ae1e467411a786c37fb20b9bce2a7a4da64aa412 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期一, 10 十一月 2025 21:35:55 +0800
Subject: [PATCH] feat:在app中增加成交价的自动计算
---
ruoyi-system/src/main/java/com/ruoyi/system/domain/SysTaskLog.java | 130 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 130 insertions(+), 0 deletions(-)
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysTaskLog.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysTaskLog.java
index 36c9638..e1140eb 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/SysTaskLog.java
+++ b/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 +
'}';
}
}
--
Gitblit v1.9.1