| 123456789101112131415161718 |
- package ports
- type QueryResponse struct {
- Statement string
- Infos []map[string]any
- TotalCount int64
- PageNo int32
- }
- type QueryByKeysResponse struct {
- Statement string
- Info map[string]any
- }
- type CountResponse struct {
- Statement string
- Count int64
- }
|