wlzboy
2025-09-21 0b80903f3d48b3c39570c097a4334cb7eb71d08f
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
package com.ruoyi.system.domain.vo;
 
import java.util.Date;
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;
 
    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;
    }
}