dal/pkg/filters/Lt.go
2024-08-08 19:26:29 +02:00

23 lines
350 B
Go

package filters
import (
"fmt"
)
type Lt struct {
Lt interface{} `json:"$lt"`
}
func (f Lt) FromJSON(data interface{}) IFilter {
return FromJson[Lt](data)
}
func (f Lt) ToSQLPart(ctx Context) string {
if f.Lt == nil {
return ""
}
name := ctx.GetFieldName()
value := ctx.NormalizeValue(f.Lt)
return fmt.Sprintf("%s < %v", name, value)
}