| 接口 | 说明 |
|---|---|
| DataStructure |
数据格式标记类:结构化的数据
|
| 类 | 说明 |
|---|---|
| DataColumn |
Column for table meta config
|
| DataTable |
Data table structure: a DataColumn array of columns
and two-dimensional array dataset
|
| GridTable |
Grid table for front view
|
| GridTable.Columns | |
| NormalStructure |
[
{"name":"alice", "age":10},
{"name":"bob", "age":18},
{"name":"tom", "age":31}
]
|
| PlainStructure |
原文格式:As a string
|
| PlainStructure.FastjsonSerializer | |
| PlainStructure.JacksonDeserializer | |
| PlainStructure.JacksonSerializer | |
| TableStructure |
{
"columns":[
{"name":"name","type":"STRING", "alias":"姓名"},
{"name":"age", "type":"INTEGER","alias":"年龄"}
],
"dataset":[
["alice",10],
["bob", 18],
["tom", 31]
],
}
|
| 枚举 | 说明 |
|---|---|
| DataStructures |
数据格式处理
|
| DataType |
Data type enum
If the data value cannot convert the target type then fix is null
|
Copyright © 2023. All rights reserved.