| 123456789101112131415161718192021222324252627282930313233 |
- package ports
- type QueryResponse struct {
- Statement string
- Infos []*InfoData
- TotalCount int64
- PageNo int32
- }
- type QueryByKeysResponse struct {
- Statement string
- Info *InfoData
- }
- type CountResponse struct {
- Statement string
- Count int64
- }
- type InfoData struct {
- Columns []*Column
- }
- type Column struct {
- Name string
- Value *ColumnValue
- }
- type ColumnValue struct {
- Kind int32
- Type string
- Value any
- }
|