1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package ports
- type QueryByWhereAndOrderByRequest struct {
- DatabaseID string
- TablePrefixWithSchema string
- Version string
- Select string
- Where []ColumnCompare
- OrderBy []string
- PageNo int32
- PageSize int32
- }
- type CommonQueryRequest struct {
- DatabaseID string
- TablePrefixWithSchema string
- Version string
- Select string
- Where []ColumnCompare
- OrderBy []string
- Or []ColumnCompare
- GroupBy []string
- Join string
- Having []ColumnCompare
- PageNo int32
- PageSize int32
- }
- type QueryByKeysRequest struct {
- DatabaseID string
- TablePrefixWithSchema string
- Version string
- Select string
- KeyValues map[string]string
- }
- type CountWhereRequest struct {
- DatabaseID string
- TablePrefixWithSchema string
- Version string
- Where []ColumnCompare
- }
- type CommonCountRequest struct {
- DatabaseID string
- TablePrefixWithSchema string
- Version string
- Where []ColumnCompare
- Or []ColumnCompare
- GroupBy []string
- Join string
- Having []ColumnCompare
- }
|