123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449 |
- create table FLOW_SKIP
- (
- ID NUMBER(20) not null
- constraint FLOW_SKIP_PK
- primary key,
- DEFINITION_ID NUMBER(20) not null,
- NOW_NODE_CODE VARCHAR2(100) not null,
- NOW_NODE_TYPE NUMBER(1),
- NEXT_NODE_CODE VARCHAR2(100) not null,
- NEXT_NODE_TYPE NUMBER(1),
- SKIP_NAME VARCHAR2(100),
- SKIP_TYPE VARCHAR2(40),
- SKIP_CONDITION VARCHAR2(200),
- COORDINATE VARCHAR2(100),
- CREATE_TIME DATE,
- UPDATE_TIME DATE,
- DEL_FLAG VARCHAR2(1),
- TENANT_ID VARCHAR2(40)
- )
- /
- comment on table FLOW_SKIP is '节点跳转关联表'
- /
- comment on column FLOW_SKIP.ID is '主键id'
- /
- comment on column FLOW_SKIP.DEFINITION_ID is '流程定义id'
- /
- comment on column FLOW_SKIP.NOW_NODE_CODE is '当前流程节点类型 (0开始节点 1中间节点 2结束节点 3互斥网关 4并行网关)'
- /
- comment on column FLOW_SKIP.NOW_NODE_TYPE is '下一个流程节点类型 (0开始节点 1中间节点 2结束节点 3互斥网关 4并行网关)'
- /
- comment on column FLOW_SKIP.NEXT_NODE_CODE is '下一个流程节点编码'
- /
- comment on column FLOW_SKIP.NEXT_NODE_TYPE is '下一个流程节点类型 (0开始节点 1中间节点 2结束节点 3互斥网关 4并行网关)'
- /
- comment on column FLOW_SKIP.SKIP_NAME is '跳转名称'
- /
- comment on column FLOW_SKIP.SKIP_TYPE is '跳转类型 (PASS审批通过 REJECT退回)'
- /
- comment on column FLOW_SKIP.SKIP_CONDITION is '跳转条件'
- /
- comment on column FLOW_SKIP.COORDINATE is '坐标'
- /
- comment on column FLOW_SKIP.CREATE_TIME is '创建时间'
- /
- comment on column FLOW_SKIP.UPDATE_TIME is '更新时间'
- /
- comment on column FLOW_SKIP.DEL_FLAG is '删除标志'
- /
- comment on column FLOW_SKIP.TENANT_ID is '租户id'
- /
- create table FLOW_HIS_TASK
- (
- ID NUMBER(20) not null,
- DEFINITION_ID NUMBER(20) not null,
- INSTANCE_ID NUMBER(20) not null,
- TASK_ID NUMBER(20) not null,
- NODE_CODE VARCHAR2(100),
- NODE_NAME VARCHAR2(100),
- NODE_TYPE NUMBER(1),
- TARGET_NODE_CODE VARCHAR2(100),
- TARGET_NODE_NAME VARCHAR2(100),
- FLOW_STATUS NUMBER(2),
- MESSAGE VARCHAR2(500),
- CREATE_TIME DATE,
- UPDATE_TIME DATE,
- DEL_FLAG VARCHAR2(1),
- TENANT_ID VARCHAR2(40),
- APPROVER VARCHAR2(40),
- COOPERATE_TYPE NUMBER(1) default 0,
- COLLABORATOR VARCHAR2(40)
- )
- /
- comment on table FLOW_HIS_TASK is '历史任务记录表'
- /
- comment on column FLOW_HIS_TASK.ID is '主键id'
- /
- comment on column FLOW_HIS_TASK.DEFINITION_ID is '对应flow_definition表的id'
- /
- comment on column FLOW_HIS_TASK.INSTANCE_ID is '对应flow_instance表的id'
- /
- comment on column FLOW_HIS_TASK.TASK_ID is '对应flow_task表的id'
- /
- comment on column FLOW_HIS_TASK.NODE_CODE is '开始节点编码'
- /
- comment on column FLOW_HIS_TASK.NODE_NAME is '开始节点名称'
- /
- comment on column FLOW_HIS_TASK.NODE_TYPE is '开始节点类型 (0开始节点 1中间节点 2结束节点 3互斥网关 4并行网关)'
- /
- comment on column FLOW_HIS_TASK.TARGET_NODE_CODE is '目标节点编码'
- /
- comment on column FLOW_HIS_TASK.TARGET_NODE_NAME is '目标节点名称'
- /
- comment on column FLOW_HIS_TASK.FLOW_STATUS is '流程状态(1审批中 2 审批通过 9已退回 10失效)'
- /
- comment on column FLOW_HIS_TASK.MESSAGE is '审批意见'
- /
- comment on column FLOW_HIS_TASK.CREATE_TIME is '创建时间'
- /
- comment on column FLOW_HIS_TASK.UPDATE_TIME is '更新时间'
- /
- comment on column FLOW_HIS_TASK.DEL_FLAG is '删除标志'
- /
- comment on column FLOW_HIS_TASK.TENANT_ID is '租户id'
- /
- comment on column FLOW_HIS_TASK.APPROVER is '审批者'
- /
- comment on column FLOW_HIS_TASK.COOPERATE_TYPE is '协作方式(1审批 2转办 3委派 4会签 5票签 6加签 7减签)'
- /
- comment on column FLOW_HIS_TASK.COLLABORATOR is '协作人'
- /
- create table FLOW_DEFINITION
- (
- ID NUMBER(20) not null
- constraint FLOW_DEFINITION_PK
- primary key,
- FLOW_CODE VARCHAR2(40) not null,
- FLOW_NAME VARCHAR2(100) not null,
- VERSION VARCHAR2(20) not null,
- IS_PUBLISH NUMBER(1) default 0 not null,
- FROM_CUSTOM VARCHAR2(1) default 'N',
- FROM_PATH VARCHAR2(100),
- CREATE_TIME DATE,
- UPDATE_TIME DATE,
- DEL_FLAG VARCHAR2(1),
- TENANT_ID VARCHAR2(40)
- )
- /
- comment on table FLOW_DEFINITION is '流程定义表'
- /
- comment on column FLOW_DEFINITION.ID is '主键id'
- /
- comment on column FLOW_DEFINITION.FLOW_CODE is '流程编码'
- /
- comment on column FLOW_DEFINITION.FLOW_NAME is '流程名称'
- /
- comment on column FLOW_DEFINITION.VERSION is '流程版本'
- /
- comment on column FLOW_DEFINITION.IS_PUBLISH is '是否发布 (0未发布 1已发布 9失效)'
- /
- comment on column FLOW_DEFINITION.FROM_CUSTOM is '审批表单是否自定义 (Y是 N否)'
- /
- comment on column FLOW_DEFINITION.FROM_PATH is '审批表单路径'
- /
- comment on column FLOW_DEFINITION.CREATE_TIME is '创建时间'
- /
- comment on column FLOW_DEFINITION.UPDATE_TIME is '更新时间'
- /
- comment on column FLOW_DEFINITION.DEL_FLAG is '删除标志'
- /
- comment on column FLOW_DEFINITION.TENANT_ID is '租户id'
- /
- create table FLOW_INSTANCE
- (
- ID NUMBER not null
- constraint FLOW_INSTANCE_PK
- primary key,
- DEFINITION_ID NUMBER not null,
- BUSINESS_ID VARCHAR2(40) not null,
- NODE_TYPE NUMBER(1),
- NODE_CODE VARCHAR2(100),
- NODE_NAME VARCHAR2(100),
- VARIABLE CLOB,
- FLOW_STATUS NUMBER(2),
- CREATE_BY VARCHAR2(64) default '',
- CREATE_TIME DATE,
- UPDATE_TIME DATE,
- EXT VARCHAR2(500),
- DEL_FLAG VARCHAR2(1),
- TENANT_ID VARCHAR2(40)
- )
- /
- comment on table FLOW_INSTANCE is '流程实例表'
- /
- comment on column FLOW_INSTANCE.ID is '主键id'
- /
- comment on column FLOW_INSTANCE.DEFINITION_ID is '对应flow_definition表的id'
- /
- comment on column FLOW_INSTANCE.BUSINESS_ID is '业务id'
- /
- comment on column FLOW_INSTANCE.NODE_TYPE is '开始节点类型 (0开始节点 1中间节点 2结束节点 3互斥网关 4并行网关)'
- /
- comment on column FLOW_INSTANCE.NODE_CODE is '开始节点编码'
- /
- comment on column FLOW_INSTANCE.NODE_NAME is '开始节点名称'
- /
- comment on column FLOW_INSTANCE.VARIABLE is '任务变量'
- /
- comment on column FLOW_INSTANCE.FLOW_STATUS is '流程状态(0待提交 1审批中 2 审批通过 3自动通过 8已完成 9已退回 10失效)'
- /
- comment on column FLOW_INSTANCE.CREATE_BY is '创建者'
- /
- comment on column FLOW_INSTANCE.CREATE_TIME is '创建时间'
- /
- comment on column FLOW_INSTANCE.UPDATE_TIME is '更新时间'
- /
- comment on column FLOW_INSTANCE.EXT is '扩展字段'
- /
- comment on column FLOW_INSTANCE.DEL_FLAG is '删除标志'
- /
- comment on column FLOW_INSTANCE.TENANT_ID is '租户id'
- /
- create table FLOW_NODE
- (
- ID NUMBER(20) not null
- constraint FLOW_NODE_PK
- primary key,
- NODE_TYPE NUMBER(1) not null,
- DEFINITION_ID NUMBER(20) not null,
- NODE_CODE VARCHAR2(100) not null,
- NODE_NAME VARCHAR2(100),
- NODE_RATIO NUMBER(6,3),
- COORDINATE VARCHAR2(100),
- SKIP_ANY_NODE VARCHAR2(100) default 'N',
- LISTENER_TYPE VARCHAR2(100),
- LISTENER_PATH VARCHAR2(500),
- HANDLER_TYPE VARCHAR2(100),
- HANDLER_PATH VARCHAR2(400),
- VERSION VARCHAR2(20),
- CREATE_TIME DATE,
- UPDATE_TIME DATE,
- DEL_FLAG VARCHAR2(1),
- TENANT_ID VARCHAR2(40),
- PERMISSION_FLAG VARCHAR2(200)
- )
- /
- comment on table FLOW_NODE is '流程结点表'
- /
- comment on column FLOW_NODE.ID is '主键id'
- /
- comment on column FLOW_NODE.NODE_TYPE is '节点类型(0开始节点 1中间节点 2结束结点 3互斥网关 4并行网关)'
- /
- comment on column FLOW_NODE.DEFINITION_ID is '对应flow_definition表的id'
- /
- comment on column FLOW_NODE.NODE_CODE is '流程节点编码'
- /
- comment on column FLOW_NODE.NODE_NAME is '流程节点名称'
- /
- comment on column FLOW_NODE.NODE_RATIO is '流程签署比例值'
- /
- comment on column FLOW_NODE.COORDINATE is '坐标'
- /
- comment on column FLOW_NODE.SKIP_ANY_NODE is '是否可以退回任意节点 (Y是 N否)'
- /
- comment on column FLOW_NODE.LISTENER_TYPE is '监听器类型'
- /
- comment on column FLOW_NODE.LISTENER_PATH is '监听器路径'
- /
- comment on column FLOW_NODE.HANDLER_TYPE is '处理器类型'
- /
- comment on column FLOW_NODE.HANDLER_PATH is '处理器路径'
- /
- comment on column FLOW_NODE.VERSION is '版本'
- /
- comment on column FLOW_NODE.CREATE_TIME is '创建时间'
- /
- comment on column FLOW_NODE.UPDATE_TIME is '更新时间'
- /
- comment on column FLOW_NODE.DEL_FLAG is '删除标志'
- /
- comment on column FLOW_NODE.TENANT_ID is '租户id'
- /
- comment on column FLOW_NODE.PERMISSION_FLAG is '权限标识(权限类型:权限标识,可以多个,用逗号隔开)'
- /
- create table FLOW_TASK
- (
- ID NUMBER(20) not null
- constraint FLOW_TASK_PK
- primary key,
- DEFINITION_ID NUMBER(20) not null,
- INSTANCE_ID NUMBER(20) not null,
- NODE_CODE VARCHAR2(100),
- NODE_NAME VARCHAR2(100),
- NODE_TYPE NUMBER(1),
- CREATE_TIME DATE,
- UPDATE_TIME DATE,
- DEL_FLAG VARCHAR2(1),
- TENANT_ID VARCHAR2(40)
- )
- /
- comment on table FLOW_TASK is '待办任务表'
- /
- comment on column FLOW_TASK.ID is '主键id'
- /
- comment on column FLOW_TASK.DEFINITION_ID is '对应flow_definition表的id'
- /
- comment on column FLOW_TASK.INSTANCE_ID is '对应flow_instance表的id'
- /
- comment on column FLOW_TASK.NODE_CODE is '节点编码'
- /
- comment on column FLOW_TASK.NODE_NAME is '节点名称'
- /
- comment on column FLOW_TASK.NODE_TYPE is '节点类型 (0开始节点 1中间节点 2结束节点 3互斥网关 4并行网关)'
- /
- comment on column FLOW_TASK.CREATE_TIME is '创建时间'
- /
- comment on column FLOW_TASK.UPDATE_TIME is '更新时间'
- /
- comment on column FLOW_TASK.DEL_FLAG is '删除标志'
- /
- comment on column FLOW_TASK.TENANT_ID is '租户id'
- /
- create table FLOW_USER
- (
- ID NUMBER(20) not null
- constraint FLOW_USER_PK
- primary key,
- TYPE VARCHAR2(1) not null,
- PROCESSED_BY VARCHAR2(80),
- ASSOCIATED NUMBER(20) not null,
- CREATE_TIME DATE,
- CREATE_BY VARCHAR2(80),
- UPDATE_TIME DATE,
- DEL_FLAG VARCHAR2(1),
- TENANT_ID VARCHAR2(40)
- )
- /
- comment on table FLOW_USER is '待办任务表'
- /
- comment on column FLOW_USER.ID is '主键id'
- /
- comment on column FLOW_USER.TYPE is '人员类型(1代办任务的审批人权限 2代办任务的转办人权限 3待办任务的委托人权限)'
- /
- comment on column FLOW_USER.PROCESSED_BY is '权限人)'
- /
- comment on column FLOW_USER.ASSOCIATED is '关联表id'
- /
- comment on column FLOW_USER.CREATE_TIME is '创建时间'
- /
- comment on column FLOW_USER.CREATE_BY is '节点名称'
- /
- comment on column FLOW_USER.UPDATE_TIME is '更新时间'
- /
- comment on column FLOW_USER.DEL_FLAG is '删除标志'
- /
- comment on column FLOW_USER.TENANT_ID is '租户id'
- /
- create index USER_PROCESSED_TYPE
- on FLOW_USER (PROCESSED_BY, TYPE)
- /
|