| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package client
- type QueryByWhereAndOrderByRequest struct {
- TablePrefixWithSchema string
- Version string
- Select string
- Where []ColumnCompare
- OrderBy []string
- PageNo int
- PageSize int
- }
- type CommonQueryRequest struct {
- TablePrefixWithSchema string
- Version string
- Select string
- Where []ColumnCompare
- OrderBy []string
- Or []ColumnCompare
- GroupBy []string
- Join string
- Having []ColumnCompare
- PageNo int
- PageSize int
- }
- type QueryByKeysRequest struct {
- TablePrefixWithSchema string
- Version string
- Select string
- KeyValues map[string]string
- }
- type CountWhereRequest struct {
- TablePrefixWithSchema string
- Version string
- Where []ColumnCompare
- }
- type CommonCountRequest struct {
- TablePrefixWithSchema string
- Version string
- Where []ColumnCompare
- Or []ColumnCompare
- GroupBy []string
- Join string
- Having []ColumnCompare
- }
- type EventQueryByKeysRequest struct {
- TablePrefixWithSchema string
- Select string
- KeyValues []string
- PageNo int
- PageSize int
- }
- type CommonEventQueryRequest struct {
- TablePrefixWithSchema string
- Select string
- 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
- }
|