Skip to content

📊Platform Database Table Descriptions

Record the database table structure description of each module of Microi code platform to facilitate developers to understand the underlying data model.


🔄Workflow Engine (WF)

Workflow engine-related tables are used to support functions such as process design, process initiation, to-do management, and process track recording.


WF_FlowDesign-Flowchart Design Sheet

Store the design information of the flowchart, one flowchart corresponds to one piece of data.

WF_Node-Process Node Attribute Table

Stores the configuration properties of each node in the flowchart, such as approver, timeout policy, etc.

WF_Line-Process Condition (Line) Attribute Table

The configuration attribute of the connection (condition) in the stored flow chart is used to determine the condition of the control process flow.

WF_Flow-Process Instance Table

store the process instance initiated each time, initiate a process to generate a record, correspondingWF_WorkN working data in the table.

WF_Work-Process Worksheet

For each to-do task generated by the storage process, a process instance can generate N to-do records (for example, multiple to-do records are generated at the same time during parallel approval).

WF_History-Process Trace Table

Detailed records of each step of the process and all actions of each person, such as consent, rejection, withdrawal, etc., for process auditing and progress viewing.

MIT License.