package org.springblade.mdm.flow.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.time.LocalDate;
|
|
@Data
|
@Schema(description = "替换流程发起数据")
|
public class ReplaceFlowStartVO {
|
@Schema(description = "流程标题")
|
private String title;
|
@Schema(description = "替换的程序包名id")
|
private Long nodeId;
|
@Schema(description = "临时id,prestart接口发送,启动流程时回传")
|
private String tempInstanceId;
|
|
@Schema(description = "处理人id")
|
private Long assignee;
|
}
|