wlzboy
2025-09-24 62a079a15b46925283581f6caaf631b5a4558927
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
package com.ruoyi.system.domain.vo;
 
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonFormat;
 
/**
 * 任务创建对象
 * 
 * @author ruoyi
 * @date 2024-01-15
 */
public class TaskCreateVO {
    
    /** 任务类型 */
    private String taskType;
 
    /** 任务描述 */
    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;
 
    /** 执行人ID */
    private Long assigneeId;
 
    /** 备注 */
    private String remark;
 
    /** 出发地经度 */
    private BigDecimal departureLongitude;
 
    /** 出发地纬度 */
    private BigDecimal departureLatitude;
 
    /** 目的地经度 */
    private BigDecimal destinationLongitude;
 
    /** 目的地纬度 */
    private BigDecimal destinationLatitude;
 
    /** 车辆ID列表 */
    private List<Long> vehicleIds;
 
    public String getTaskType() {
        return taskType;
    }
 
    public void setTaskType(String taskType) {
        this.taskType = taskType;
    }
 
    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;
    }
 
    public List<Long> getVehicleIds() {
        return vehicleIds;
    }
 
    public void setVehicleIds(List<Long> vehicleIds) {
        this.vehicleIds = vehicleIds;
    }
}