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;
|
|
}
|