From 2c86a8bd60deed0dd0e044bad6fb83f75d19a332 Mon Sep 17 00:00:00 2001
From: wlzboy <66905212@qq.com>
Date: 星期日, 26 十月 2025 15:05:50 +0800
Subject: [PATCH] Merge branch 'feature-task'

---
 ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/TaskUpdateVO.java |  148 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 148 insertions(+), 0 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/TaskUpdateVO.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/TaskUpdateVO.java
new file mode 100644
index 0000000..b8e502b
--- /dev/null
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/vo/TaskUpdateVO.java
@@ -0,0 +1,148 @@
+package com.ruoyi.system.domain.vo;
+
+import java.math.BigDecimal;
+import java.util.Date;
+import com.fasterxml.jackson.annotation.JsonFormat;
+
+/**
+ * 浠诲姟鏇存柊瀵硅薄
+ * 
+ * @author ruoyi
+ * @date 2024-01-15
+ */
+public class TaskUpdateVO {
+    
+    /** 浠诲姟ID */
+    private Long taskId;
+
+    /** 浠诲姟鎻忚堪 */
+    private String taskDescription;
+
+    /** 鍑哄彂鍦板潃 */
+    private String departureAddress;
+
+    /** 鐩殑鍦板潃 */
+    private String destinationAddress;
+
+    /** 璁″垝寮�濮嬫椂闂� */
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    private Date plannedStartTime;
+
+    /** 璁″垝缁撴潫鏃堕棿 */
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+    private Date plannedEndTime;
+
+    /** 鎵ц浜篒D */
+    private Long assigneeId;
+
+    /** 澶囨敞 */
+    private String remark;
+
+    /** 鍑哄彂鍦扮粡搴� */
+    private BigDecimal departureLongitude;
+
+    /** 鍑哄彂鍦扮含搴� */
+    private BigDecimal departureLatitude;
+
+    /** 鐩殑鍦扮粡搴� */
+    private BigDecimal destinationLongitude;
+
+    /** 鐩殑鍦扮含搴� */
+    private BigDecimal destinationLatitude;
+
+    public Long getTaskId() {
+        return taskId;
+    }
+
+    public void setTaskId(Long taskId) {
+        this.taskId = taskId;
+    }
+
+    public String getTaskDescription() {
+        return taskDescription;
+    }
+
+    public void setTaskDescription(String taskDescription) {
+        this.taskDescription = taskDescription;
+    }
+
+    public String getDepartureAddress() {
+        return departureAddress;
+    }
+
+    public void setDepartureAddress(String departureAddress) {
+        this.departureAddress = departureAddress;
+    }
+
+    public String getDestinationAddress() {
+        return destinationAddress;
+    }
+
+    public void setDestinationAddress(String destinationAddress) {
+        this.destinationAddress = destinationAddress;
+    }
+
+    public Date getPlannedStartTime() {
+        return plannedStartTime;
+    }
+
+    public void setPlannedStartTime(Date plannedStartTime) {
+        this.plannedStartTime = plannedStartTime;
+    }
+
+    public Date getPlannedEndTime() {
+        return plannedEndTime;
+    }
+
+    public void setPlannedEndTime(Date plannedEndTime) {
+        this.plannedEndTime = plannedEndTime;
+    }
+
+    public Long getAssigneeId() {
+        return assigneeId;
+    }
+
+    public void setAssigneeId(Long assigneeId) {
+        this.assigneeId = assigneeId;
+    }
+
+    public String getRemark() {
+        return remark;
+    }
+
+    public void setRemark(String remark) {
+        this.remark = remark;
+    }
+
+    public BigDecimal getDepartureLongitude() {
+        return departureLongitude;
+    }
+
+    public void setDepartureLongitude(BigDecimal departureLongitude) {
+        this.departureLongitude = departureLongitude;
+    }
+
+    public BigDecimal getDepartureLatitude() {
+        return departureLatitude;
+    }
+
+    public void setDepartureLatitude(BigDecimal departureLatitude) {
+        this.departureLatitude = departureLatitude;
+    }
+
+    public BigDecimal getDestinationLongitude() {
+        return destinationLongitude;
+    }
+
+    public void setDestinationLongitude(BigDecimal destinationLongitude) {
+        this.destinationLongitude = destinationLongitude;
+    }
+
+    public BigDecimal getDestinationLatitude() {
+        return destinationLatitude;
+    }
+
+    public void setDestinationLatitude(BigDecimal destinationLatitude) {
+        this.destinationLatitude = destinationLatitude;
+    }
+}

--
Gitblit v1.9.1