Class FlowSkip

All Implemented Interfaces:
Serializable, org.dromara.warm.flow.core.entity.RootEntity, org.dromara.warm.flow.core.entity.Skip

@Entity public class FlowSkip extends JPARootEntity<FlowSkip> implements org.dromara.warm.flow.core.entity.Skip
节点跳转关联对象 flow_skip
Since:
2024-05-08
Author:
vanlin
See Also:
  • Field Details

    • MAPPING

      public static final HashMap<String,String> MAPPING
    • entityPredicate

      private JPAPredicateFunction<javax.persistence.criteria.CriteriaBuilder,javax.persistence.criteria.Root<FlowSkip>,List<javax.persistence.criteria.Predicate>> entityPredicate
    • entityMerge

      private JPAUpdateMergeFunction<FlowSkip> entityMerge
    • definitionId

      private Long definitionId
      流程id
    • nodeId

      private Long nodeId
      节点id
    • nowNodeCode

      private String nowNodeCode
      当前流程节点的编码
    • nowNodeType

      private Integer nowNodeType
      当前节点类型(0开始节点 1中间节点 2结束节点 3互斥网关 4并行网关)
    • nextNodeCode

      private String nextNodeCode
      下一个流程节点的编码
    • nextNodeType

      private Integer nextNodeType
      下一个节点类型(0开始节点 1中间节点 2结束节点 3互斥网关 4并行网关)
    • skipName

      private String skipName
      跳转名称
    • skipType

      private String skipType
      跳转类型(PASS审批通过 REJECT退回)
    • skipCondition

      private String skipCondition
      跳转条件
    • coordinate

      private String coordinate
      流程跳转坐标
  • Constructor Details

    • FlowSkip

      public FlowSkip()
  • Method Details