You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
432 lines
14 KiB
Go
432 lines
14 KiB
Go
1 year ago
|
// Code generated by ent, DO NOT EDIT.
|
||
|
|
||
|
package usermeta
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"entgo.io/ent/dialect/sql"
|
||
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
||
|
"git.noahlan.cn/n-admin/n-admin-server/rpc/core/ent/predicate"
|
||
|
)
|
||
|
|
||
|
// ID filters vertices based on their ID field.
|
||
|
func ID(id int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDEQ applies the EQ predicate on the ID field.
|
||
|
func IDEQ(id int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDNEQ applies the NEQ predicate on the ID field.
|
||
|
func IDNEQ(id int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNEQ(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDIn applies the In predicate on the ID field.
|
||
|
func IDIn(ids ...int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldIn(FieldID, ids...))
|
||
|
}
|
||
|
|
||
|
// IDNotIn applies the NotIn predicate on the ID field.
|
||
|
func IDNotIn(ids ...int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNotIn(FieldID, ids...))
|
||
|
}
|
||
|
|
||
|
// IDGT applies the GT predicate on the ID field.
|
||
|
func IDGT(id int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGT(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDGTE applies the GTE predicate on the ID field.
|
||
|
func IDGTE(id int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGTE(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDLT applies the LT predicate on the ID field.
|
||
|
func IDLT(id int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLT(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// IDLTE applies the LTE predicate on the ID field.
|
||
|
func IDLTE(id int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLTE(FieldID, id))
|
||
|
}
|
||
|
|
||
|
// CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
|
||
|
func CreatedAt(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
|
||
|
func UpdatedAt(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// Version applies equality check predicate on the "version" field. It's identical to VersionEQ.
|
||
|
func Version(v int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.
|
||
|
func UserID(v int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldUserID, v))
|
||
|
}
|
||
|
|
||
|
// Key applies equality check predicate on the "key" field. It's identical to KeyEQ.
|
||
|
func Key(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// Value applies equality check predicate on the "value" field. It's identical to ValueEQ.
|
||
|
func Value(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
||
|
func CreatedAtEQ(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
||
|
func CreatedAtNEQ(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNEQ(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
||
|
func CreatedAtIn(vs ...time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldIn(FieldCreatedAt, vs...))
|
||
|
}
|
||
|
|
||
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
||
|
func CreatedAtNotIn(vs ...time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNotIn(FieldCreatedAt, vs...))
|
||
|
}
|
||
|
|
||
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
||
|
func CreatedAtGT(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGT(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
||
|
func CreatedAtGTE(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGTE(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
||
|
func CreatedAtLT(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLT(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
||
|
func CreatedAtLTE(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLTE(FieldCreatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
||
|
func UpdatedAtEQ(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
||
|
func UpdatedAtNEQ(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNEQ(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
||
|
func UpdatedAtIn(vs ...time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldIn(FieldUpdatedAt, vs...))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
||
|
func UpdatedAtNotIn(vs ...time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
||
|
func UpdatedAtGT(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGT(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
||
|
func UpdatedAtGTE(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGTE(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
||
|
func UpdatedAtLT(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLT(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
||
|
func UpdatedAtLTE(v time.Time) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLTE(FieldUpdatedAt, v))
|
||
|
}
|
||
|
|
||
|
// VersionEQ applies the EQ predicate on the "version" field.
|
||
|
func VersionEQ(v int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// VersionNEQ applies the NEQ predicate on the "version" field.
|
||
|
func VersionNEQ(v int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNEQ(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// VersionIn applies the In predicate on the "version" field.
|
||
|
func VersionIn(vs ...int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldIn(FieldVersion, vs...))
|
||
|
}
|
||
|
|
||
|
// VersionNotIn applies the NotIn predicate on the "version" field.
|
||
|
func VersionNotIn(vs ...int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNotIn(FieldVersion, vs...))
|
||
|
}
|
||
|
|
||
|
// VersionGT applies the GT predicate on the "version" field.
|
||
|
func VersionGT(v int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGT(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// VersionGTE applies the GTE predicate on the "version" field.
|
||
|
func VersionGTE(v int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGTE(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// VersionLT applies the LT predicate on the "version" field.
|
||
|
func VersionLT(v int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLT(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// VersionLTE applies the LTE predicate on the "version" field.
|
||
|
func VersionLTE(v int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLTE(FieldVersion, v))
|
||
|
}
|
||
|
|
||
|
// UserIDEQ applies the EQ predicate on the "user_id" field.
|
||
|
func UserIDEQ(v int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldUserID, v))
|
||
|
}
|
||
|
|
||
|
// UserIDNEQ applies the NEQ predicate on the "user_id" field.
|
||
|
func UserIDNEQ(v int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNEQ(FieldUserID, v))
|
||
|
}
|
||
|
|
||
|
// UserIDIn applies the In predicate on the "user_id" field.
|
||
|
func UserIDIn(vs ...int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldIn(FieldUserID, vs...))
|
||
|
}
|
||
|
|
||
|
// UserIDNotIn applies the NotIn predicate on the "user_id" field.
|
||
|
func UserIDNotIn(vs ...int64) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNotIn(FieldUserID, vs...))
|
||
|
}
|
||
|
|
||
|
// KeyEQ applies the EQ predicate on the "key" field.
|
||
|
func KeyEQ(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// KeyNEQ applies the NEQ predicate on the "key" field.
|
||
|
func KeyNEQ(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNEQ(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// KeyIn applies the In predicate on the "key" field.
|
||
|
func KeyIn(vs ...string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldIn(FieldKey, vs...))
|
||
|
}
|
||
|
|
||
|
// KeyNotIn applies the NotIn predicate on the "key" field.
|
||
|
func KeyNotIn(vs ...string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNotIn(FieldKey, vs...))
|
||
|
}
|
||
|
|
||
|
// KeyGT applies the GT predicate on the "key" field.
|
||
|
func KeyGT(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGT(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// KeyGTE applies the GTE predicate on the "key" field.
|
||
|
func KeyGTE(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGTE(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// KeyLT applies the LT predicate on the "key" field.
|
||
|
func KeyLT(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLT(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// KeyLTE applies the LTE predicate on the "key" field.
|
||
|
func KeyLTE(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLTE(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// KeyContains applies the Contains predicate on the "key" field.
|
||
|
func KeyContains(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldContains(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// KeyHasPrefix applies the HasPrefix predicate on the "key" field.
|
||
|
func KeyHasPrefix(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldHasPrefix(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// KeyHasSuffix applies the HasSuffix predicate on the "key" field.
|
||
|
func KeyHasSuffix(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldHasSuffix(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// KeyIsNil applies the IsNil predicate on the "key" field.
|
||
|
func KeyIsNil() predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldIsNull(FieldKey))
|
||
|
}
|
||
|
|
||
|
// KeyNotNil applies the NotNil predicate on the "key" field.
|
||
|
func KeyNotNil() predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNotNull(FieldKey))
|
||
|
}
|
||
|
|
||
|
// KeyEqualFold applies the EqualFold predicate on the "key" field.
|
||
|
func KeyEqualFold(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEqualFold(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// KeyContainsFold applies the ContainsFold predicate on the "key" field.
|
||
|
func KeyContainsFold(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldContainsFold(FieldKey, v))
|
||
|
}
|
||
|
|
||
|
// ValueEQ applies the EQ predicate on the "value" field.
|
||
|
func ValueEQ(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEQ(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// ValueNEQ applies the NEQ predicate on the "value" field.
|
||
|
func ValueNEQ(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNEQ(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// ValueIn applies the In predicate on the "value" field.
|
||
|
func ValueIn(vs ...string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldIn(FieldValue, vs...))
|
||
|
}
|
||
|
|
||
|
// ValueNotIn applies the NotIn predicate on the "value" field.
|
||
|
func ValueNotIn(vs ...string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNotIn(FieldValue, vs...))
|
||
|
}
|
||
|
|
||
|
// ValueGT applies the GT predicate on the "value" field.
|
||
|
func ValueGT(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGT(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// ValueGTE applies the GTE predicate on the "value" field.
|
||
|
func ValueGTE(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldGTE(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// ValueLT applies the LT predicate on the "value" field.
|
||
|
func ValueLT(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLT(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// ValueLTE applies the LTE predicate on the "value" field.
|
||
|
func ValueLTE(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldLTE(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// ValueContains applies the Contains predicate on the "value" field.
|
||
|
func ValueContains(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldContains(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// ValueHasPrefix applies the HasPrefix predicate on the "value" field.
|
||
|
func ValueHasPrefix(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldHasPrefix(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// ValueHasSuffix applies the HasSuffix predicate on the "value" field.
|
||
|
func ValueHasSuffix(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldHasSuffix(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// ValueIsNil applies the IsNil predicate on the "value" field.
|
||
|
func ValueIsNil() predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldIsNull(FieldValue))
|
||
|
}
|
||
|
|
||
|
// ValueNotNil applies the NotNil predicate on the "value" field.
|
||
|
func ValueNotNil() predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldNotNull(FieldValue))
|
||
|
}
|
||
|
|
||
|
// ValueEqualFold applies the EqualFold predicate on the "value" field.
|
||
|
func ValueEqualFold(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldEqualFold(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// ValueContainsFold applies the ContainsFold predicate on the "value" field.
|
||
|
func ValueContainsFold(v string) predicate.UserMeta {
|
||
|
return predicate.UserMeta(sql.FieldContainsFold(FieldValue, v))
|
||
|
}
|
||
|
|
||
|
// HasUser applies the HasEdge predicate on the "user" edge.
|
||
|
func HasUser() predicate.UserMeta {
|
||
|
return predicate.UserMeta(func(s *sql.Selector) {
|
||
|
step := sqlgraph.NewStep(
|
||
|
sqlgraph.From(Table, FieldID),
|
||
|
sqlgraph.Edge(sqlgraph.M2O, true, UserTable, UserColumn),
|
||
|
)
|
||
|
sqlgraph.HasNeighbors(s, step)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// HasUserWith applies the HasEdge predicate on the "user" edge with a given conditions (other predicates).
|
||
|
func HasUserWith(preds ...predicate.User) predicate.UserMeta {
|
||
|
return predicate.UserMeta(func(s *sql.Selector) {
|
||
|
step := newUserStep()
|
||
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
||
|
for _, p := range preds {
|
||
|
p(s)
|
||
|
}
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// And groups predicates with the AND operator between them.
|
||
|
func And(predicates ...predicate.UserMeta) predicate.UserMeta {
|
||
|
return predicate.UserMeta(func(s *sql.Selector) {
|
||
|
s1 := s.Clone().SetP(nil)
|
||
|
for _, p := range predicates {
|
||
|
p(s1)
|
||
|
}
|
||
|
s.Where(s1.P())
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// Or groups predicates with the OR operator between them.
|
||
|
func Or(predicates ...predicate.UserMeta) predicate.UserMeta {
|
||
|
return predicate.UserMeta(func(s *sql.Selector) {
|
||
|
s1 := s.Clone().SetP(nil)
|
||
|
for i, p := range predicates {
|
||
|
if i > 0 {
|
||
|
s1.Or()
|
||
|
}
|
||
|
p(s1)
|
||
|
}
|
||
|
s.Where(s1.P())
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// Not applies the not operator on the given predicate.
|
||
|
func Not(p predicate.UserMeta) predicate.UserMeta {
|
||
|
return predicate.UserMeta(func(s *sql.Selector) {
|
||
|
p(s.Not())
|
||
|
})
|
||
|
}
|