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 }