yangys
2025-06-17 ceb4fde6edb1f73bc45f54129432ec8068875b6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 comment;
    @Schema(description = "开始时间")
    private Date createTime;
    @Schema(description = "完成时间")
    private Date endTime;
 
}