yangys
2025-09-06 61763cc1a182effa7e5535ac72d54a6a56f029eb
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
package org.springblade.mdm.flow.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.Date;
 
@Data
@Schema(description = "流程轨迹数据")
public class TaskTraceVO {
 
    @Schema(description = "执行人")
    private String assigneeName;
    @Schema(description = "任务名称")
    private String taskName;
    @Schema(description = "批注")
    private String comment;
    @Schema(description = "开始时间")
    private Date createTime;
    @Schema(description = "完成时间")
    private Date endTime;
 
}