19 lines
281 B
Go
19 lines
281 B
Go
package repo
|
|
|
|
type IEntity interface {
|
|
Id() string
|
|
CreatedBy() string
|
|
SetCreatedBy(string)
|
|
TenantId() string
|
|
SetTenantId(string)
|
|
SetNow(int64)
|
|
}
|
|
|
|
type QueryParams struct {
|
|
Page int
|
|
PageSize int
|
|
Where map[string]any
|
|
WhereInIds []string
|
|
OrderBy []string
|
|
}
|