Class FlowTask

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

@Entity public class FlowTask extends JPARootEntity<FlowTask> implements org.dromara.warm.flow.core.entity.Task
待办任务记录对象 flow_task
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<FlowTask>,List<javax.persistence.criteria.Predicate>> entityPredicate
    • entityMerge

      private JPAUpdateMergeFunction<FlowTask> entityMerge
    • definitionId

      private Long definitionId
      对应flow_definition表的id
    • instanceId

      private Long instanceId
      流程实例表id
    • flowName

      private String flowName
      流程名称
    • businessId

      private String businessId
      业务id
    • nodeCode

      private String nodeCode
      节点编码
    • nodeName

      private String nodeName
      节点名称
    • nodeType

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

      private List<String> permissionList
      权限标识 permissionFlag的list形式
    • userList

      private List<org.dromara.warm.flow.core.entity.User> userList
      流程用户列表
    • formCustom

      private String formCustom
      审批表单是否自定义(Y是 2否)
    • formPath

      private String formPath
      审批表单路径
  • Constructor Details

    • FlowTask

      public FlowTask()
  • Method Details