@@ -2,32 +2,17 @@ package ports
type QueryResponse struct {
Statement string
- Infos []*InfoData
+ Infos []map[string]any
TotalCount int64
PageNo int32
}
type QueryByKeysResponse struct {
- Info *InfoData
+ Info map[string]any
type CountResponse struct {
Count int64
-
-type InfoData struct {
- Columns []*Column
-}
-type Column struct {
- Name string
- Value *ColumnValue
-type ColumnValue struct {
- Kind int32
- Type string
- Value any