Files
mayfly-go/server/pkg/consts/gormx.go

34 lines
568 B
Go
Raw Normal View History

package consts
const (
Comma = ","
LeftBracket = "("
RightBracket = ")"
DefaultPrimaryName = "id"
)
const (
And = "AND"
Or = "OR"
In = "IN"
Not = "NOT"
Like = "LIKE"
Eq = "="
Ne = "<>"
Gt = ">"
Ge = ">="
Lt = "<"
Le = "<="
IsNull = "IS NULL"
IsNotNull = "IS NOT NULL"
Between = "BETWEEN"
Desc = "DESC"
Asc = "ASC"
As = "AS"
SUM = "SUM"
AVG = "AVG"
MAX = "MAX"
MIN = "MIN"
COUNT = "COUNT"
)