package jnpf.workflow.common.model.fo; import java.io.Serializable; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Data; @Data public class TaskPrevFo implements Serializable { @Schema(name = "deploymentId", description = "部署ID") private String deploymentId; @Schema(name = "taskKey", description = "节点Key") private String taskKey; @Schema(name = "taskId", description = "任务ID") private String taskId; }