client_query_response.go 276 B

123456789101112131415161718
  1. package ports
  2. type QueryResponse struct {
  3. Statement string
  4. Infos []map[string]any
  5. TotalCount int64
  6. PageNo int32
  7. }
  8. type QueryByKeysResponse struct {
  9. Statement string
  10. Info map[string]any
  11. }
  12. type CountResponse struct {
  13. Statement string
  14. Count int64
  15. }