| 1234567891011121314151617181920212223242526 | 
							- package om
 
- const (
 
- 	Q = "'"
 
- )
 
- const (
 
- 	defaultQueryField = "sn"
 
- )
 
- type OrderType string
 
- const (
 
- 	OrderASC  OrderType = ASC
 
- 	OrderDESC OrderType = DESC
 
- )
 
- type (
 
- 	Params  map[string]any
 
- 	OrderBy map[string]OrderType
 
- )
 
- type LimitParams struct {
 
- 	Offset int64
 
- 	Limit  int64
 
- }
 
 
  |