mirror of
https://github.com/cloudreve/cloudreve.git
synced 2026-03-03 00:47:02 +00:00
368 lines
13 KiB
Go
368 lines
13 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package oauthgrant
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"github.com/cloudreve/Cloudreve/v4/ent/predicate"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(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.OAuthGrant {
|
|
return predicate.OAuthGrant(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.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.
|
|
func DeletedAt(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldDeletedAt, v))
|
|
}
|
|
|
|
// UserID applies equality check predicate on the "user_id" field. It's identical to UserIDEQ.
|
|
func UserID(v int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldUserID, v))
|
|
}
|
|
|
|
// ClientID applies equality check predicate on the "client_id" field. It's identical to ClientIDEQ.
|
|
func ClientID(v int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldClientID, v))
|
|
}
|
|
|
|
// LastUsedAt applies equality check predicate on the "last_used_at" field. It's identical to LastUsedAtEQ.
|
|
func LastUsedAt(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldLastUsedAt, v))
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
|
func CreatedAtEQ(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
|
func CreatedAtNEQ(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
|
func CreatedAtIn(vs ...time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNotIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
|
func CreatedAtGT(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldGT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
|
func CreatedAtGTE(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldGTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
|
func CreatedAtLT(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldLT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
|
func CreatedAtLTE(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldLTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
|
func UpdatedAtEQ(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
|
func UpdatedAtNEQ(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
|
func UpdatedAtIn(vs ...time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
|
func UpdatedAtNotIn(vs ...time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
|
func UpdatedAtGT(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldGT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
|
func UpdatedAtGTE(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldGTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
|
func UpdatedAtLT(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldLT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
|
func UpdatedAtLTE(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldLTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
|
|
func DeletedAtEQ(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
|
|
func DeletedAtNEQ(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNEQ(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtIn applies the In predicate on the "deleted_at" field.
|
|
func DeletedAtIn(vs ...time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldIn(FieldDeletedAt, vs...))
|
|
}
|
|
|
|
// DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
|
|
func DeletedAtNotIn(vs ...time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNotIn(FieldDeletedAt, vs...))
|
|
}
|
|
|
|
// DeletedAtGT applies the GT predicate on the "deleted_at" field.
|
|
func DeletedAtGT(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldGT(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
|
|
func DeletedAtGTE(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldGTE(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtLT applies the LT predicate on the "deleted_at" field.
|
|
func DeletedAtLT(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldLT(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
|
|
func DeletedAtLTE(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldLTE(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.
|
|
func DeletedAtIsNil() predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldIsNull(FieldDeletedAt))
|
|
}
|
|
|
|
// DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.
|
|
func DeletedAtNotNil() predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNotNull(FieldDeletedAt))
|
|
}
|
|
|
|
// UserIDEQ applies the EQ predicate on the "user_id" field.
|
|
func UserIDEQ(v int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldUserID, v))
|
|
}
|
|
|
|
// UserIDNEQ applies the NEQ predicate on the "user_id" field.
|
|
func UserIDNEQ(v int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNEQ(FieldUserID, v))
|
|
}
|
|
|
|
// UserIDIn applies the In predicate on the "user_id" field.
|
|
func UserIDIn(vs ...int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldIn(FieldUserID, vs...))
|
|
}
|
|
|
|
// UserIDNotIn applies the NotIn predicate on the "user_id" field.
|
|
func UserIDNotIn(vs ...int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNotIn(FieldUserID, vs...))
|
|
}
|
|
|
|
// ClientIDEQ applies the EQ predicate on the "client_id" field.
|
|
func ClientIDEQ(v int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldClientID, v))
|
|
}
|
|
|
|
// ClientIDNEQ applies the NEQ predicate on the "client_id" field.
|
|
func ClientIDNEQ(v int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNEQ(FieldClientID, v))
|
|
}
|
|
|
|
// ClientIDIn applies the In predicate on the "client_id" field.
|
|
func ClientIDIn(vs ...int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldIn(FieldClientID, vs...))
|
|
}
|
|
|
|
// ClientIDNotIn applies the NotIn predicate on the "client_id" field.
|
|
func ClientIDNotIn(vs ...int) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNotIn(FieldClientID, vs...))
|
|
}
|
|
|
|
// LastUsedAtEQ applies the EQ predicate on the "last_used_at" field.
|
|
func LastUsedAtEQ(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldEQ(FieldLastUsedAt, v))
|
|
}
|
|
|
|
// LastUsedAtNEQ applies the NEQ predicate on the "last_used_at" field.
|
|
func LastUsedAtNEQ(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNEQ(FieldLastUsedAt, v))
|
|
}
|
|
|
|
// LastUsedAtIn applies the In predicate on the "last_used_at" field.
|
|
func LastUsedAtIn(vs ...time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldIn(FieldLastUsedAt, vs...))
|
|
}
|
|
|
|
// LastUsedAtNotIn applies the NotIn predicate on the "last_used_at" field.
|
|
func LastUsedAtNotIn(vs ...time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNotIn(FieldLastUsedAt, vs...))
|
|
}
|
|
|
|
// LastUsedAtGT applies the GT predicate on the "last_used_at" field.
|
|
func LastUsedAtGT(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldGT(FieldLastUsedAt, v))
|
|
}
|
|
|
|
// LastUsedAtGTE applies the GTE predicate on the "last_used_at" field.
|
|
func LastUsedAtGTE(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldGTE(FieldLastUsedAt, v))
|
|
}
|
|
|
|
// LastUsedAtLT applies the LT predicate on the "last_used_at" field.
|
|
func LastUsedAtLT(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldLT(FieldLastUsedAt, v))
|
|
}
|
|
|
|
// LastUsedAtLTE applies the LTE predicate on the "last_used_at" field.
|
|
func LastUsedAtLTE(v time.Time) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldLTE(FieldLastUsedAt, v))
|
|
}
|
|
|
|
// LastUsedAtIsNil applies the IsNil predicate on the "last_used_at" field.
|
|
func LastUsedAtIsNil() predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldIsNull(FieldLastUsedAt))
|
|
}
|
|
|
|
// LastUsedAtNotNil applies the NotNil predicate on the "last_used_at" field.
|
|
func LastUsedAtNotNil() predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.FieldNotNull(FieldLastUsedAt))
|
|
}
|
|
|
|
// HasUser applies the HasEdge predicate on the "user" edge.
|
|
func HasUser() predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(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.OAuthGrant {
|
|
return predicate.OAuthGrant(func(s *sql.Selector) {
|
|
step := newUserStep()
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
for _, p := range preds {
|
|
p(s)
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
// HasClient applies the HasEdge predicate on the "client" edge.
|
|
func HasClient() predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, ClientTable, ClientColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasClientWith applies the HasEdge predicate on the "client" edge with a given conditions (other predicates).
|
|
func HasClientWith(preds ...predicate.OAuthClient) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(func(s *sql.Selector) {
|
|
step := newClientStep()
|
|
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.OAuthGrant) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.OAuthGrant) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.OAuthGrant) predicate.OAuthGrant {
|
|
return predicate.OAuthGrant(sql.NotPredicates(p))
|
|
}
|