Skip to content

System Fields and Database Storage Structure Mapping

TypePlatform Storage Original TypeDatabase TypeDescription
IDStringvarchar(200)Record ID
Single TextStringvarchar(200)Default maximum of 200 characters, can be adjusted
Multi-line TextStringvarchar(1000)Default maximum of 1000 characters, can be adjusted
Rich TextStringtext
IntegerIntegerint8
DecimalDoublefloat8Stores decimal numbers
DateDatetimestamp(6)Stores dates
TimeStringvarchar(32)Stores time
RatingIntegerint4Rating component
List SelectionStringvarchar(200)List selection component allows users to select one or more values from a list
Tree SelectionStringTree SelectionTree structure selection allows users to select one or more values from a tree structure
Cascading SelectionArray<String>jsonbCascading selection control allows users to select one or more values from a cascading structure
AttachmentTableAttachmentjsonbAttachments allow uploading files in formats such as images and documents. These files can be previewed online or downloaded
Checkbox/SwitchBooleanboolCheckbox
User SelectionTableAccountSimplejsonbApplication member field allows adding one or more application members
Department SelectionTableDepartmentSimplejsonbDepartment field allows selecting one or more departments
ColorStringvarchar(32)Color picker
Handwritten SignatureTableSignaturejsonbAllows users to handwrite signatures, preserving handwriting
Geographical CoordinatesTableCoordinatejsonbGeographical coordinates
FunctionStringUses functions and values from other fields to calculate a result
Custom ComponentUses website module pages to customize display controls
Related ListAssociates multiple records from another table
Related RecordStringvarchar(64)Associates one record from another table, stores the record ID of the dependent table
Related Record FieldAssociates specific fields from another table
Lookup ListLooks up records associated with this table based on filter conditions
Sub-objectStringltreeUsing sub-objects can make the data table have a tree structure
Related List RollupDoublefloat8Calculates summary data of specific fields in the [Related List]
Lookup RollupDoublefloat8Looks up records associated with the related list based on filter conditions and summarizes data according to specific fields of the related list
Serial NumberStringvarchar(128)System-generated serial number
Sub-object NumberStringtextComplete path of the tree structure
Creation TimeDatetimestamp(6)Automatically records the creation time of data
Last Modification TimeDatetimestamp(6)Automatically records the last modification time of data
CreatorStringvarchar(128)Automatically records the creator of data
Last ModifierStringvarchar(128)Automatically records the last modifier of data
Static Text and ControlsUses rich text to edit static display text, the text content can be dynamically set using expressions

Notes

  • Fields with no marked Database Type indicate that the field does not have a corresponding mapping column in the current data table model
  • Platform Storage Original Type only shows the data type for single selection. For fields that support multiple selection such as List Selection, Tree Selection, and Attachment, they will be wrapped in an Array data structure when Multiple Selection is enabled.