12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package client
- type QueryByWhereAndOrderByRequest struct {
- TablePrefixWithSchema string
- Table string
- Version string
- Select *Clause
- Where *Clause
- OrderBy string
- PageNo int
- PageSize int
- }
- type CommonQueryRequest struct {
- TablePrefixWithSchema string
- Table string
- Version string
- Select *Clause
- Where *Clause
- OrderBy string
- Or *Clause
- GroupBy string
- Joins *Clause
- Having *Clause
- PageNo int
- PageSize int
- }
- type QueryByKeysRequest struct {
- TablePrefixWithSchema string
- Version string
- Select *Clause
- KeyValues *KeyValue
- }
- type CountWhereRequest struct {
- TablePrefixWithSchema string
- Table string
- Version string
- Where *Clause
- }
- type CommonCountRequest struct {
- TablePrefixWithSchema string
- Table string
- Version string
- Where *Clause
- Or *Clause
- GroupBy string
- Joins *Clause
- Having *Clause
- }
- type EventQueryByKeysRequest struct {
- TablePrefixWithSchema string
- Select *Clause
- KeyValues []string
- PageNo int
- PageSize int
- }
- type CommonEventQueryRequest struct {
- TablePrefixWithSchema string
- Select *Clause
- KeyValues []string
- Version string
- Operation string
- CreatorID string
- StartCreatedTime string
- EndCreatedTime string
- PageNo int
- PageSize int
- }
- type CountEventByKeysRequest struct {
- TablePrefixWithSchema string
- KeyValues []string
- }
- type CommonCountEventRequest struct {
- TablePrefixWithSchema string
- KeyValues []string
- Version string
- Operation string
- CreatorID string
- StartCreatedTime string
- EndCreatedTime string
- }
|