zoukankan      html  css  js  c++  java
  • jeesite中activiti中的流程表梳理

    最近在利用jeesite开发一个小系统,趁着这个机会整理了activiti中的相关表,跟踪流程,然后查看这几个表中数据的变化,可以更好地理解流程的开发。现在整理出来,希望可以帮助更多的人!

    表结构

    一.工作流部署—RepositoryService

    1.流程定义数据表:act_re_procdef

    2.流程设计模型部署:act_re_model

    3.部署信息表:act_re_deployment

    二.工作流运行表—RuntimeService

    1.运行时流程人员表:act_ru_identitylink

    2.Event时间监听信息表:act_ru_event_subscr

    3.运行时流程执行实例表:act_ru_execution

    4.运行时定时任务数据表:act_ru_job

    5.运行时任务节点表:act_ru_task

    6.运行时流程变量数据表:act_ru_variable

    三.工作流历史表 — HistoryService

    1.历史节点表:act_hi_actinst 记录流程流转过的所有节点

    2.历史任务实例表:act_hi_taskinst 只记录usertask内容

    3.历史附件表:act_hi_attachment

    4.历史意见表:act_hi_comment

    5.历史详情表:act_hi_detail 流程中产生的变量详情

    5.历史变量表:act_hi_varinst

    四.工作流组织机构表 — IdentityService

    1.用户信息表:act_id_user

    2.用户扩展信息表:act_id_info

    3.用户组信息表:act_id_group

    4.用户与用户组对应信息表:act_id_membership

    五.全局属性表

    1.二进制数据表:act_ge_bytearray

    2.全局属性:act_ge_property

  • 相关阅读:
    meta标签
    html5新增标签
    jQuery鼠标事件
    Jenkins在Linux环境安装
    3、jQuery的DOM基础
    2、jQuery选择器
    1、jQuery概述
    伪分布模式安装hadoop
    poj 2773欧几里德
    poj 1298(水题)
  • 原文地址:https://www.cnblogs.com/gaoguofeng/p/9522712.html
Copyright © 2011-2022 走看看