Class WorkflowEdgeResponse

java.lang.Object
com.bytedesk.core.base.BaseResponse
com.bytedesk.core.workflow_edge.WorkflowEdgeResponse
All Implemented Interfaces:
Serializable

public class WorkflowEdgeResponse extends BaseResponse
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • name

      private String name
      边名称
    • description

      private String description
      边描述
    • edgeType

      private String edgeType
      边类型 (DEFAULT, CONDITION, LOOP, DATA, CONTROL, ERROR, etc.)
    • sourceNodeId

      private String sourceNodeId
      源节点ID
    • targetNodeId

      private String targetNodeId
      目标节点ID
    • sourcePortId

      private String sourcePortId
      源端口ID(可选,用于多端口节点)
    • targetPortId

      private String targetPortId
      目标端口ID(可选,用于多端口节点)
    • weight

      private Integer weight
      边的权重或优先级
    • conditionExpression

      private String conditionExpression
      条件表达式(用于条件边)
    • edgeData

      private String edgeData
      边完整配置数据(JSON格式)
    • executionResult

      private String executionResult
      边执行结果数据(JSON格式)
    • lastExecutionTime

      private ZonedDateTime lastExecutionTime
      边最后执行时间
    • executionCount

      private Long executionCount
      边执行次数
    • enabled

      private Boolean enabled
      是否启用该边
    • styleConfig

      private String styleConfig
      边的样式配置(JSON格式)
    • workflowUid

      private String workflowUid
      关联的工作流UID
    • isConditionalEdge

      private Boolean isConditionalEdge
      是否为条件边
    • isControlEdge

      private Boolean isControlEdge
      是否为控制边
    • isDataEdge

      private Boolean isDataEdge
      是否为数据边
  • Constructor Details

    • WorkflowEdgeResponse

      public WorkflowEdgeResponse()