mirror of https://github.com/cloudreve/Cloudreve
425 lines
15 KiB
Go
425 lines
15 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package directlink
|
|
|
|
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.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int) predicate.DirectLink {
|
|
return predicate.DirectLink(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.DirectLink {
|
|
return predicate.DirectLink(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.DirectLink {
|
|
return predicate.DirectLink(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.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldDeletedAt, v))
|
|
}
|
|
|
|
// Name applies equality check predicate on the "name" field. It's identical to NameEQ.
|
|
func Name(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldName, v))
|
|
}
|
|
|
|
// Downloads applies equality check predicate on the "downloads" field. It's identical to DownloadsEQ.
|
|
func Downloads(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldDownloads, v))
|
|
}
|
|
|
|
// FileID applies equality check predicate on the "file_id" field. It's identical to FileIDEQ.
|
|
func FileID(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldFileID, v))
|
|
}
|
|
|
|
// Speed applies equality check predicate on the "speed" field. It's identical to SpeedEQ.
|
|
func Speed(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldSpeed, v))
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
|
func CreatedAtEQ(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
|
func CreatedAtNEQ(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
|
func CreatedAtIn(vs ...time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNotIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
|
func CreatedAtGT(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
|
func CreatedAtGTE(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
|
func CreatedAtLT(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
|
func CreatedAtLTE(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
|
func UpdatedAtEQ(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
|
func UpdatedAtNEQ(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
|
func UpdatedAtIn(vs ...time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
|
func UpdatedAtNotIn(vs ...time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
|
func UpdatedAtGT(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
|
func UpdatedAtGTE(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
|
func UpdatedAtLT(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
|
func UpdatedAtLTE(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
|
|
func DeletedAtEQ(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
|
|
func DeletedAtNEQ(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNEQ(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtIn applies the In predicate on the "deleted_at" field.
|
|
func DeletedAtIn(vs ...time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldIn(FieldDeletedAt, vs...))
|
|
}
|
|
|
|
// DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
|
|
func DeletedAtNotIn(vs ...time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNotIn(FieldDeletedAt, vs...))
|
|
}
|
|
|
|
// DeletedAtGT applies the GT predicate on the "deleted_at" field.
|
|
func DeletedAtGT(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGT(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
|
|
func DeletedAtGTE(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGTE(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtLT applies the LT predicate on the "deleted_at" field.
|
|
func DeletedAtLT(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLT(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
|
|
func DeletedAtLTE(v time.Time) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLTE(FieldDeletedAt, v))
|
|
}
|
|
|
|
// DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.
|
|
func DeletedAtIsNil() predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldIsNull(FieldDeletedAt))
|
|
}
|
|
|
|
// DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.
|
|
func DeletedAtNotNil() predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNotNull(FieldDeletedAt))
|
|
}
|
|
|
|
// NameEQ applies the EQ predicate on the "name" field.
|
|
func NameEQ(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldName, v))
|
|
}
|
|
|
|
// NameNEQ applies the NEQ predicate on the "name" field.
|
|
func NameNEQ(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNEQ(FieldName, v))
|
|
}
|
|
|
|
// NameIn applies the In predicate on the "name" field.
|
|
func NameIn(vs ...string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldIn(FieldName, vs...))
|
|
}
|
|
|
|
// NameNotIn applies the NotIn predicate on the "name" field.
|
|
func NameNotIn(vs ...string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNotIn(FieldName, vs...))
|
|
}
|
|
|
|
// NameGT applies the GT predicate on the "name" field.
|
|
func NameGT(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGT(FieldName, v))
|
|
}
|
|
|
|
// NameGTE applies the GTE predicate on the "name" field.
|
|
func NameGTE(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGTE(FieldName, v))
|
|
}
|
|
|
|
// NameLT applies the LT predicate on the "name" field.
|
|
func NameLT(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLT(FieldName, v))
|
|
}
|
|
|
|
// NameLTE applies the LTE predicate on the "name" field.
|
|
func NameLTE(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLTE(FieldName, v))
|
|
}
|
|
|
|
// NameContains applies the Contains predicate on the "name" field.
|
|
func NameContains(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldContains(FieldName, v))
|
|
}
|
|
|
|
// NameHasPrefix applies the HasPrefix predicate on the "name" field.
|
|
func NameHasPrefix(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldHasPrefix(FieldName, v))
|
|
}
|
|
|
|
// NameHasSuffix applies the HasSuffix predicate on the "name" field.
|
|
func NameHasSuffix(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldHasSuffix(FieldName, v))
|
|
}
|
|
|
|
// NameEqualFold applies the EqualFold predicate on the "name" field.
|
|
func NameEqualFold(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEqualFold(FieldName, v))
|
|
}
|
|
|
|
// NameContainsFold applies the ContainsFold predicate on the "name" field.
|
|
func NameContainsFold(v string) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldContainsFold(FieldName, v))
|
|
}
|
|
|
|
// DownloadsEQ applies the EQ predicate on the "downloads" field.
|
|
func DownloadsEQ(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldDownloads, v))
|
|
}
|
|
|
|
// DownloadsNEQ applies the NEQ predicate on the "downloads" field.
|
|
func DownloadsNEQ(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNEQ(FieldDownloads, v))
|
|
}
|
|
|
|
// DownloadsIn applies the In predicate on the "downloads" field.
|
|
func DownloadsIn(vs ...int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldIn(FieldDownloads, vs...))
|
|
}
|
|
|
|
// DownloadsNotIn applies the NotIn predicate on the "downloads" field.
|
|
func DownloadsNotIn(vs ...int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNotIn(FieldDownloads, vs...))
|
|
}
|
|
|
|
// DownloadsGT applies the GT predicate on the "downloads" field.
|
|
func DownloadsGT(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGT(FieldDownloads, v))
|
|
}
|
|
|
|
// DownloadsGTE applies the GTE predicate on the "downloads" field.
|
|
func DownloadsGTE(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGTE(FieldDownloads, v))
|
|
}
|
|
|
|
// DownloadsLT applies the LT predicate on the "downloads" field.
|
|
func DownloadsLT(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLT(FieldDownloads, v))
|
|
}
|
|
|
|
// DownloadsLTE applies the LTE predicate on the "downloads" field.
|
|
func DownloadsLTE(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLTE(FieldDownloads, v))
|
|
}
|
|
|
|
// FileIDEQ applies the EQ predicate on the "file_id" field.
|
|
func FileIDEQ(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldFileID, v))
|
|
}
|
|
|
|
// FileIDNEQ applies the NEQ predicate on the "file_id" field.
|
|
func FileIDNEQ(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNEQ(FieldFileID, v))
|
|
}
|
|
|
|
// FileIDIn applies the In predicate on the "file_id" field.
|
|
func FileIDIn(vs ...int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldIn(FieldFileID, vs...))
|
|
}
|
|
|
|
// FileIDNotIn applies the NotIn predicate on the "file_id" field.
|
|
func FileIDNotIn(vs ...int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNotIn(FieldFileID, vs...))
|
|
}
|
|
|
|
// SpeedEQ applies the EQ predicate on the "speed" field.
|
|
func SpeedEQ(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldEQ(FieldSpeed, v))
|
|
}
|
|
|
|
// SpeedNEQ applies the NEQ predicate on the "speed" field.
|
|
func SpeedNEQ(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNEQ(FieldSpeed, v))
|
|
}
|
|
|
|
// SpeedIn applies the In predicate on the "speed" field.
|
|
func SpeedIn(vs ...int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldIn(FieldSpeed, vs...))
|
|
}
|
|
|
|
// SpeedNotIn applies the NotIn predicate on the "speed" field.
|
|
func SpeedNotIn(vs ...int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldNotIn(FieldSpeed, vs...))
|
|
}
|
|
|
|
// SpeedGT applies the GT predicate on the "speed" field.
|
|
func SpeedGT(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGT(FieldSpeed, v))
|
|
}
|
|
|
|
// SpeedGTE applies the GTE predicate on the "speed" field.
|
|
func SpeedGTE(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldGTE(FieldSpeed, v))
|
|
}
|
|
|
|
// SpeedLT applies the LT predicate on the "speed" field.
|
|
func SpeedLT(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLT(FieldSpeed, v))
|
|
}
|
|
|
|
// SpeedLTE applies the LTE predicate on the "speed" field.
|
|
func SpeedLTE(v int) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.FieldLTE(FieldSpeed, v))
|
|
}
|
|
|
|
// HasFile applies the HasEdge predicate on the "file" edge.
|
|
func HasFile() predicate.DirectLink {
|
|
return predicate.DirectLink(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, FileTable, FileColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasFileWith applies the HasEdge predicate on the "file" edge with a given conditions (other predicates).
|
|
func HasFileWith(preds ...predicate.File) predicate.DirectLink {
|
|
return predicate.DirectLink(func(s *sql.Selector) {
|
|
step := newFileStep()
|
|
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.DirectLink) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.DirectLink) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.DirectLink) predicate.DirectLink {
|
|
return predicate.DirectLink(sql.NotPredicates(p))
|
|
}
|