SqlQueryComponent SQL 查询
1. 结构声明
- TS Declaration
- JSON Schema
class SqlQueryComponent extends LogicItem {
code: string;
dataSource: string;
ideVersion: string;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"changedTime": {
"$ref": "#/definitions/long"
},
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"folded": {
"type": "boolean"
},
"offsetX": {
"type": "number"
},
"offsetY": {
"type": "number"
},
"typeAnnotation": {
"$ref": "#/definitions/TypeAnnotation"
},
"breakpoint": {
"type": "string",
"enum": [
"ENABLED",
"DISABLED"
]
},
"code": {
"type": "string"
},
"dataSource": {
"type": "string"
},
"ideVersion": {
"type": "string"
}
},
"required": [
"code",
"dataSource",
"ideVersion"
],
"additionalProperties": false
}