383 lines
13 KiB
Go
383 lines
13 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package logentry
|
|
|
|
import (
|
|
"time"
|
|
|
|
"code.icod.de/postfix/manager/ent/predicate"
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldLTE(FieldID, id))
|
|
}
|
|
|
|
// Timestamp applies equality check predicate on the "timestamp" field. It's identical to TimestampEQ.
|
|
func Timestamp(v time.Time) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldTimestamp, v))
|
|
}
|
|
|
|
// Action applies equality check predicate on the "action" field. It's identical to ActionEQ.
|
|
func Action(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldAction, v))
|
|
}
|
|
|
|
// Data applies equality check predicate on the "data" field. It's identical to DataEQ.
|
|
func Data(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldData, v))
|
|
}
|
|
|
|
// AccountID applies equality check predicate on the "account_id" field. It's identical to AccountIDEQ.
|
|
func AccountID(v int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldAccountID, v))
|
|
}
|
|
|
|
// DomainID applies equality check predicate on the "domain_id" field. It's identical to DomainIDEQ.
|
|
func DomainID(v int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldDomainID, v))
|
|
}
|
|
|
|
// TimestampEQ applies the EQ predicate on the "timestamp" field.
|
|
func TimestampEQ(v time.Time) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldTimestamp, v))
|
|
}
|
|
|
|
// TimestampNEQ applies the NEQ predicate on the "timestamp" field.
|
|
func TimestampNEQ(v time.Time) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNEQ(FieldTimestamp, v))
|
|
}
|
|
|
|
// TimestampIn applies the In predicate on the "timestamp" field.
|
|
func TimestampIn(vs ...time.Time) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldIn(FieldTimestamp, vs...))
|
|
}
|
|
|
|
// TimestampNotIn applies the NotIn predicate on the "timestamp" field.
|
|
func TimestampNotIn(vs ...time.Time) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNotIn(FieldTimestamp, vs...))
|
|
}
|
|
|
|
// TimestampGT applies the GT predicate on the "timestamp" field.
|
|
func TimestampGT(v time.Time) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldGT(FieldTimestamp, v))
|
|
}
|
|
|
|
// TimestampGTE applies the GTE predicate on the "timestamp" field.
|
|
func TimestampGTE(v time.Time) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldGTE(FieldTimestamp, v))
|
|
}
|
|
|
|
// TimestampLT applies the LT predicate on the "timestamp" field.
|
|
func TimestampLT(v time.Time) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldLT(FieldTimestamp, v))
|
|
}
|
|
|
|
// TimestampLTE applies the LTE predicate on the "timestamp" field.
|
|
func TimestampLTE(v time.Time) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldLTE(FieldTimestamp, v))
|
|
}
|
|
|
|
// ActionEQ applies the EQ predicate on the "action" field.
|
|
func ActionEQ(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldAction, v))
|
|
}
|
|
|
|
// ActionNEQ applies the NEQ predicate on the "action" field.
|
|
func ActionNEQ(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNEQ(FieldAction, v))
|
|
}
|
|
|
|
// ActionIn applies the In predicate on the "action" field.
|
|
func ActionIn(vs ...string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldIn(FieldAction, vs...))
|
|
}
|
|
|
|
// ActionNotIn applies the NotIn predicate on the "action" field.
|
|
func ActionNotIn(vs ...string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNotIn(FieldAction, vs...))
|
|
}
|
|
|
|
// ActionGT applies the GT predicate on the "action" field.
|
|
func ActionGT(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldGT(FieldAction, v))
|
|
}
|
|
|
|
// ActionGTE applies the GTE predicate on the "action" field.
|
|
func ActionGTE(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldGTE(FieldAction, v))
|
|
}
|
|
|
|
// ActionLT applies the LT predicate on the "action" field.
|
|
func ActionLT(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldLT(FieldAction, v))
|
|
}
|
|
|
|
// ActionLTE applies the LTE predicate on the "action" field.
|
|
func ActionLTE(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldLTE(FieldAction, v))
|
|
}
|
|
|
|
// ActionContains applies the Contains predicate on the "action" field.
|
|
func ActionContains(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldContains(FieldAction, v))
|
|
}
|
|
|
|
// ActionHasPrefix applies the HasPrefix predicate on the "action" field.
|
|
func ActionHasPrefix(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldHasPrefix(FieldAction, v))
|
|
}
|
|
|
|
// ActionHasSuffix applies the HasSuffix predicate on the "action" field.
|
|
func ActionHasSuffix(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldHasSuffix(FieldAction, v))
|
|
}
|
|
|
|
// ActionEqualFold applies the EqualFold predicate on the "action" field.
|
|
func ActionEqualFold(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEqualFold(FieldAction, v))
|
|
}
|
|
|
|
// ActionContainsFold applies the ContainsFold predicate on the "action" field.
|
|
func ActionContainsFold(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldContainsFold(FieldAction, v))
|
|
}
|
|
|
|
// DataEQ applies the EQ predicate on the "data" field.
|
|
func DataEQ(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldData, v))
|
|
}
|
|
|
|
// DataNEQ applies the NEQ predicate on the "data" field.
|
|
func DataNEQ(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNEQ(FieldData, v))
|
|
}
|
|
|
|
// DataIn applies the In predicate on the "data" field.
|
|
func DataIn(vs ...string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldIn(FieldData, vs...))
|
|
}
|
|
|
|
// DataNotIn applies the NotIn predicate on the "data" field.
|
|
func DataNotIn(vs ...string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNotIn(FieldData, vs...))
|
|
}
|
|
|
|
// DataGT applies the GT predicate on the "data" field.
|
|
func DataGT(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldGT(FieldData, v))
|
|
}
|
|
|
|
// DataGTE applies the GTE predicate on the "data" field.
|
|
func DataGTE(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldGTE(FieldData, v))
|
|
}
|
|
|
|
// DataLT applies the LT predicate on the "data" field.
|
|
func DataLT(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldLT(FieldData, v))
|
|
}
|
|
|
|
// DataLTE applies the LTE predicate on the "data" field.
|
|
func DataLTE(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldLTE(FieldData, v))
|
|
}
|
|
|
|
// DataContains applies the Contains predicate on the "data" field.
|
|
func DataContains(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldContains(FieldData, v))
|
|
}
|
|
|
|
// DataHasPrefix applies the HasPrefix predicate on the "data" field.
|
|
func DataHasPrefix(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldHasPrefix(FieldData, v))
|
|
}
|
|
|
|
// DataHasSuffix applies the HasSuffix predicate on the "data" field.
|
|
func DataHasSuffix(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldHasSuffix(FieldData, v))
|
|
}
|
|
|
|
// DataIsNil applies the IsNil predicate on the "data" field.
|
|
func DataIsNil() predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldIsNull(FieldData))
|
|
}
|
|
|
|
// DataNotNil applies the NotNil predicate on the "data" field.
|
|
func DataNotNil() predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNotNull(FieldData))
|
|
}
|
|
|
|
// DataEqualFold applies the EqualFold predicate on the "data" field.
|
|
func DataEqualFold(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEqualFold(FieldData, v))
|
|
}
|
|
|
|
// DataContainsFold applies the ContainsFold predicate on the "data" field.
|
|
func DataContainsFold(v string) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldContainsFold(FieldData, v))
|
|
}
|
|
|
|
// AccountIDEQ applies the EQ predicate on the "account_id" field.
|
|
func AccountIDEQ(v int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldAccountID, v))
|
|
}
|
|
|
|
// AccountIDNEQ applies the NEQ predicate on the "account_id" field.
|
|
func AccountIDNEQ(v int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNEQ(FieldAccountID, v))
|
|
}
|
|
|
|
// AccountIDIn applies the In predicate on the "account_id" field.
|
|
func AccountIDIn(vs ...int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldIn(FieldAccountID, vs...))
|
|
}
|
|
|
|
// AccountIDNotIn applies the NotIn predicate on the "account_id" field.
|
|
func AccountIDNotIn(vs ...int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNotIn(FieldAccountID, vs...))
|
|
}
|
|
|
|
// AccountIDIsNil applies the IsNil predicate on the "account_id" field.
|
|
func AccountIDIsNil() predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldIsNull(FieldAccountID))
|
|
}
|
|
|
|
// AccountIDNotNil applies the NotNil predicate on the "account_id" field.
|
|
func AccountIDNotNil() predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNotNull(FieldAccountID))
|
|
}
|
|
|
|
// DomainIDEQ applies the EQ predicate on the "domain_id" field.
|
|
func DomainIDEQ(v int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldEQ(FieldDomainID, v))
|
|
}
|
|
|
|
// DomainIDNEQ applies the NEQ predicate on the "domain_id" field.
|
|
func DomainIDNEQ(v int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNEQ(FieldDomainID, v))
|
|
}
|
|
|
|
// DomainIDIn applies the In predicate on the "domain_id" field.
|
|
func DomainIDIn(vs ...int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldIn(FieldDomainID, vs...))
|
|
}
|
|
|
|
// DomainIDNotIn applies the NotIn predicate on the "domain_id" field.
|
|
func DomainIDNotIn(vs ...int64) predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNotIn(FieldDomainID, vs...))
|
|
}
|
|
|
|
// DomainIDIsNil applies the IsNil predicate on the "domain_id" field.
|
|
func DomainIDIsNil() predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldIsNull(FieldDomainID))
|
|
}
|
|
|
|
// DomainIDNotNil applies the NotNil predicate on the "domain_id" field.
|
|
func DomainIDNotNil() predicate.Logentry {
|
|
return predicate.Logentry(sql.FieldNotNull(FieldDomainID))
|
|
}
|
|
|
|
// HasAccount applies the HasEdge predicate on the "account" edge.
|
|
func HasAccount() predicate.Logentry {
|
|
return predicate.Logentry(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, AccountTable, AccountColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasAccountWith applies the HasEdge predicate on the "account" edge with a given conditions (other predicates).
|
|
func HasAccountWith(preds ...predicate.Account) predicate.Logentry {
|
|
return predicate.Logentry(func(s *sql.Selector) {
|
|
step := newAccountStep()
|
|
sqlgraph.HasNeighborsWith(s, step, func(s *sql.Selector) {
|
|
for _, p := range preds {
|
|
p(s)
|
|
}
|
|
})
|
|
})
|
|
}
|
|
|
|
// HasDomain applies the HasEdge predicate on the "domain" edge.
|
|
func HasDomain() predicate.Logentry {
|
|
return predicate.Logentry(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, DomainTable, DomainColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasDomainWith applies the HasEdge predicate on the "domain" edge with a given conditions (other predicates).
|
|
func HasDomainWith(preds ...predicate.Domain) predicate.Logentry {
|
|
return predicate.Logentry(func(s *sql.Selector) {
|
|
step := newDomainStep()
|
|
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.Logentry) predicate.Logentry {
|
|
return predicate.Logentry(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.Logentry) predicate.Logentry {
|
|
return predicate.Logentry(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.Logentry) predicate.Logentry {
|
|
return predicate.Logentry(sql.NotPredicates(p))
|
|
}
|