|
|
@@ -0,0 +1,31 @@
|
|
|
+package cn.start.tz.module.pressure2.controller.admin.externalOA.vo;
|
|
|
+
|
|
|
+import cn.start.tz.framework.common.pojo.PageParam;
|
|
|
+import io.swagger.v3.oas.annotations.media.Schema;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.ToString;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.math.BigDecimal;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import static cn.start.tz.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
|
+
|
|
|
+@Data
|
|
|
+@ToString(callSuper = true)
|
|
|
+public class ReturnFlowVO{
|
|
|
+ @Schema(description = "流程ID")
|
|
|
+ private String summaryId;
|
|
|
+ @Schema(description = "账户ID")
|
|
|
+ private String accountId;
|
|
|
+ @Schema(description = "节点名称")
|
|
|
+ private String nodeName;
|
|
|
+ @Schema(description = "处理人")
|
|
|
+ private String handler;
|
|
|
+ @Schema(description = "处理类型")
|
|
|
+ private String handleType;
|
|
|
+ @Schema(description = "表单编码")
|
|
|
+ private String formcode;
|
|
|
+}
|