560 lines
23 KiB
Go
560 lines
23 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package authidentitychannel
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"github.com/Wei-Shaw/sub2api/ent/predicate"
|
|
)
|
|
|
|
// ID filters vertices based on their ID field.
|
|
func ID(id int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDEQ applies the EQ predicate on the ID field.
|
|
func IDEQ(id int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldID, id))
|
|
}
|
|
|
|
// IDNEQ applies the NEQ predicate on the ID field.
|
|
func IDNEQ(id int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNEQ(FieldID, id))
|
|
}
|
|
|
|
// IDIn applies the In predicate on the ID field.
|
|
func IDIn(ids ...int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDNotIn applies the NotIn predicate on the ID field.
|
|
func IDNotIn(ids ...int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNotIn(FieldID, ids...))
|
|
}
|
|
|
|
// IDGT applies the GT predicate on the ID field.
|
|
func IDGT(id int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGT(FieldID, id))
|
|
}
|
|
|
|
// IDGTE applies the GTE predicate on the ID field.
|
|
func IDGTE(id int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGTE(FieldID, id))
|
|
}
|
|
|
|
// IDLT applies the LT predicate on the ID field.
|
|
func IDLT(id int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLT(FieldID, id))
|
|
}
|
|
|
|
// IDLTE applies the LTE predicate on the ID field.
|
|
func IDLTE(id int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(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.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(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.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// IdentityID applies equality check predicate on the "identity_id" field. It's identical to IdentityIDEQ.
|
|
func IdentityID(v int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldIdentityID, v))
|
|
}
|
|
|
|
// ProviderType applies equality check predicate on the "provider_type" field. It's identical to ProviderTypeEQ.
|
|
func ProviderType(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderKey applies equality check predicate on the "provider_key" field. It's identical to ProviderKeyEQ.
|
|
func ProviderKey(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldProviderKey, v))
|
|
}
|
|
|
|
// Channel applies equality check predicate on the "channel" field. It's identical to ChannelEQ.
|
|
func Channel(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelAppID applies equality check predicate on the "channel_app_id" field. It's identical to ChannelAppIDEQ.
|
|
func ChannelAppID(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelSubject applies equality check predicate on the "channel_subject" field. It's identical to ChannelSubjectEQ.
|
|
func ChannelSubject(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldChannelSubject, v))
|
|
}
|
|
|
|
// CreatedAtEQ applies the EQ predicate on the "created_at" field.
|
|
func CreatedAtEQ(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
|
|
func CreatedAtNEQ(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNEQ(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtIn applies the In predicate on the "created_at" field.
|
|
func CreatedAtIn(vs ...time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
|
|
func CreatedAtNotIn(vs ...time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNotIn(FieldCreatedAt, vs...))
|
|
}
|
|
|
|
// CreatedAtGT applies the GT predicate on the "created_at" field.
|
|
func CreatedAtGT(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtGTE applies the GTE predicate on the "created_at" field.
|
|
func CreatedAtGTE(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLT applies the LT predicate on the "created_at" field.
|
|
func CreatedAtLT(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLT(FieldCreatedAt, v))
|
|
}
|
|
|
|
// CreatedAtLTE applies the LTE predicate on the "created_at" field.
|
|
func CreatedAtLTE(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLTE(FieldCreatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
|
|
func UpdatedAtEQ(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
|
|
func UpdatedAtNEQ(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNEQ(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtIn applies the In predicate on the "updated_at" field.
|
|
func UpdatedAtIn(vs ...time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
|
|
func UpdatedAtNotIn(vs ...time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNotIn(FieldUpdatedAt, vs...))
|
|
}
|
|
|
|
// UpdatedAtGT applies the GT predicate on the "updated_at" field.
|
|
func UpdatedAtGT(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
|
|
func UpdatedAtGTE(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLT applies the LT predicate on the "updated_at" field.
|
|
func UpdatedAtLT(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLT(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
|
|
func UpdatedAtLTE(v time.Time) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLTE(FieldUpdatedAt, v))
|
|
}
|
|
|
|
// IdentityIDEQ applies the EQ predicate on the "identity_id" field.
|
|
func IdentityIDEQ(v int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldIdentityID, v))
|
|
}
|
|
|
|
// IdentityIDNEQ applies the NEQ predicate on the "identity_id" field.
|
|
func IdentityIDNEQ(v int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNEQ(FieldIdentityID, v))
|
|
}
|
|
|
|
// IdentityIDIn applies the In predicate on the "identity_id" field.
|
|
func IdentityIDIn(vs ...int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldIn(FieldIdentityID, vs...))
|
|
}
|
|
|
|
// IdentityIDNotIn applies the NotIn predicate on the "identity_id" field.
|
|
func IdentityIDNotIn(vs ...int64) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNotIn(FieldIdentityID, vs...))
|
|
}
|
|
|
|
// ProviderTypeEQ applies the EQ predicate on the "provider_type" field.
|
|
func ProviderTypeEQ(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderTypeNEQ applies the NEQ predicate on the "provider_type" field.
|
|
func ProviderTypeNEQ(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNEQ(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderTypeIn applies the In predicate on the "provider_type" field.
|
|
func ProviderTypeIn(vs ...string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldIn(FieldProviderType, vs...))
|
|
}
|
|
|
|
// ProviderTypeNotIn applies the NotIn predicate on the "provider_type" field.
|
|
func ProviderTypeNotIn(vs ...string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNotIn(FieldProviderType, vs...))
|
|
}
|
|
|
|
// ProviderTypeGT applies the GT predicate on the "provider_type" field.
|
|
func ProviderTypeGT(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGT(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderTypeGTE applies the GTE predicate on the "provider_type" field.
|
|
func ProviderTypeGTE(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGTE(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderTypeLT applies the LT predicate on the "provider_type" field.
|
|
func ProviderTypeLT(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLT(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderTypeLTE applies the LTE predicate on the "provider_type" field.
|
|
func ProviderTypeLTE(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLTE(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderTypeContains applies the Contains predicate on the "provider_type" field.
|
|
func ProviderTypeContains(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldContains(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderTypeHasPrefix applies the HasPrefix predicate on the "provider_type" field.
|
|
func ProviderTypeHasPrefix(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldHasPrefix(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderTypeHasSuffix applies the HasSuffix predicate on the "provider_type" field.
|
|
func ProviderTypeHasSuffix(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldHasSuffix(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderTypeEqualFold applies the EqualFold predicate on the "provider_type" field.
|
|
func ProviderTypeEqualFold(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEqualFold(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderTypeContainsFold applies the ContainsFold predicate on the "provider_type" field.
|
|
func ProviderTypeContainsFold(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldContainsFold(FieldProviderType, v))
|
|
}
|
|
|
|
// ProviderKeyEQ applies the EQ predicate on the "provider_key" field.
|
|
func ProviderKeyEQ(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldProviderKey, v))
|
|
}
|
|
|
|
// ProviderKeyNEQ applies the NEQ predicate on the "provider_key" field.
|
|
func ProviderKeyNEQ(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNEQ(FieldProviderKey, v))
|
|
}
|
|
|
|
// ProviderKeyIn applies the In predicate on the "provider_key" field.
|
|
func ProviderKeyIn(vs ...string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldIn(FieldProviderKey, vs...))
|
|
}
|
|
|
|
// ProviderKeyNotIn applies the NotIn predicate on the "provider_key" field.
|
|
func ProviderKeyNotIn(vs ...string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNotIn(FieldProviderKey, vs...))
|
|
}
|
|
|
|
// ProviderKeyGT applies the GT predicate on the "provider_key" field.
|
|
func ProviderKeyGT(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGT(FieldProviderKey, v))
|
|
}
|
|
|
|
// ProviderKeyGTE applies the GTE predicate on the "provider_key" field.
|
|
func ProviderKeyGTE(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGTE(FieldProviderKey, v))
|
|
}
|
|
|
|
// ProviderKeyLT applies the LT predicate on the "provider_key" field.
|
|
func ProviderKeyLT(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLT(FieldProviderKey, v))
|
|
}
|
|
|
|
// ProviderKeyLTE applies the LTE predicate on the "provider_key" field.
|
|
func ProviderKeyLTE(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLTE(FieldProviderKey, v))
|
|
}
|
|
|
|
// ProviderKeyContains applies the Contains predicate on the "provider_key" field.
|
|
func ProviderKeyContains(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldContains(FieldProviderKey, v))
|
|
}
|
|
|
|
// ProviderKeyHasPrefix applies the HasPrefix predicate on the "provider_key" field.
|
|
func ProviderKeyHasPrefix(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldHasPrefix(FieldProviderKey, v))
|
|
}
|
|
|
|
// ProviderKeyHasSuffix applies the HasSuffix predicate on the "provider_key" field.
|
|
func ProviderKeyHasSuffix(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldHasSuffix(FieldProviderKey, v))
|
|
}
|
|
|
|
// ProviderKeyEqualFold applies the EqualFold predicate on the "provider_key" field.
|
|
func ProviderKeyEqualFold(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEqualFold(FieldProviderKey, v))
|
|
}
|
|
|
|
// ProviderKeyContainsFold applies the ContainsFold predicate on the "provider_key" field.
|
|
func ProviderKeyContainsFold(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldContainsFold(FieldProviderKey, v))
|
|
}
|
|
|
|
// ChannelEQ applies the EQ predicate on the "channel" field.
|
|
func ChannelEQ(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelNEQ applies the NEQ predicate on the "channel" field.
|
|
func ChannelNEQ(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNEQ(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelIn applies the In predicate on the "channel" field.
|
|
func ChannelIn(vs ...string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldIn(FieldChannel, vs...))
|
|
}
|
|
|
|
// ChannelNotIn applies the NotIn predicate on the "channel" field.
|
|
func ChannelNotIn(vs ...string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNotIn(FieldChannel, vs...))
|
|
}
|
|
|
|
// ChannelGT applies the GT predicate on the "channel" field.
|
|
func ChannelGT(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGT(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelGTE applies the GTE predicate on the "channel" field.
|
|
func ChannelGTE(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGTE(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelLT applies the LT predicate on the "channel" field.
|
|
func ChannelLT(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLT(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelLTE applies the LTE predicate on the "channel" field.
|
|
func ChannelLTE(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLTE(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelContains applies the Contains predicate on the "channel" field.
|
|
func ChannelContains(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldContains(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelHasPrefix applies the HasPrefix predicate on the "channel" field.
|
|
func ChannelHasPrefix(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldHasPrefix(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelHasSuffix applies the HasSuffix predicate on the "channel" field.
|
|
func ChannelHasSuffix(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldHasSuffix(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelEqualFold applies the EqualFold predicate on the "channel" field.
|
|
func ChannelEqualFold(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEqualFold(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelContainsFold applies the ContainsFold predicate on the "channel" field.
|
|
func ChannelContainsFold(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldContainsFold(FieldChannel, v))
|
|
}
|
|
|
|
// ChannelAppIDEQ applies the EQ predicate on the "channel_app_id" field.
|
|
func ChannelAppIDEQ(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelAppIDNEQ applies the NEQ predicate on the "channel_app_id" field.
|
|
func ChannelAppIDNEQ(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNEQ(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelAppIDIn applies the In predicate on the "channel_app_id" field.
|
|
func ChannelAppIDIn(vs ...string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldIn(FieldChannelAppID, vs...))
|
|
}
|
|
|
|
// ChannelAppIDNotIn applies the NotIn predicate on the "channel_app_id" field.
|
|
func ChannelAppIDNotIn(vs ...string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNotIn(FieldChannelAppID, vs...))
|
|
}
|
|
|
|
// ChannelAppIDGT applies the GT predicate on the "channel_app_id" field.
|
|
func ChannelAppIDGT(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGT(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelAppIDGTE applies the GTE predicate on the "channel_app_id" field.
|
|
func ChannelAppIDGTE(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGTE(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelAppIDLT applies the LT predicate on the "channel_app_id" field.
|
|
func ChannelAppIDLT(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLT(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelAppIDLTE applies the LTE predicate on the "channel_app_id" field.
|
|
func ChannelAppIDLTE(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLTE(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelAppIDContains applies the Contains predicate on the "channel_app_id" field.
|
|
func ChannelAppIDContains(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldContains(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelAppIDHasPrefix applies the HasPrefix predicate on the "channel_app_id" field.
|
|
func ChannelAppIDHasPrefix(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldHasPrefix(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelAppIDHasSuffix applies the HasSuffix predicate on the "channel_app_id" field.
|
|
func ChannelAppIDHasSuffix(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldHasSuffix(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelAppIDEqualFold applies the EqualFold predicate on the "channel_app_id" field.
|
|
func ChannelAppIDEqualFold(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEqualFold(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelAppIDContainsFold applies the ContainsFold predicate on the "channel_app_id" field.
|
|
func ChannelAppIDContainsFold(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldContainsFold(FieldChannelAppID, v))
|
|
}
|
|
|
|
// ChannelSubjectEQ applies the EQ predicate on the "channel_subject" field.
|
|
func ChannelSubjectEQ(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEQ(FieldChannelSubject, v))
|
|
}
|
|
|
|
// ChannelSubjectNEQ applies the NEQ predicate on the "channel_subject" field.
|
|
func ChannelSubjectNEQ(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNEQ(FieldChannelSubject, v))
|
|
}
|
|
|
|
// ChannelSubjectIn applies the In predicate on the "channel_subject" field.
|
|
func ChannelSubjectIn(vs ...string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldIn(FieldChannelSubject, vs...))
|
|
}
|
|
|
|
// ChannelSubjectNotIn applies the NotIn predicate on the "channel_subject" field.
|
|
func ChannelSubjectNotIn(vs ...string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldNotIn(FieldChannelSubject, vs...))
|
|
}
|
|
|
|
// ChannelSubjectGT applies the GT predicate on the "channel_subject" field.
|
|
func ChannelSubjectGT(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGT(FieldChannelSubject, v))
|
|
}
|
|
|
|
// ChannelSubjectGTE applies the GTE predicate on the "channel_subject" field.
|
|
func ChannelSubjectGTE(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldGTE(FieldChannelSubject, v))
|
|
}
|
|
|
|
// ChannelSubjectLT applies the LT predicate on the "channel_subject" field.
|
|
func ChannelSubjectLT(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLT(FieldChannelSubject, v))
|
|
}
|
|
|
|
// ChannelSubjectLTE applies the LTE predicate on the "channel_subject" field.
|
|
func ChannelSubjectLTE(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldLTE(FieldChannelSubject, v))
|
|
}
|
|
|
|
// ChannelSubjectContains applies the Contains predicate on the "channel_subject" field.
|
|
func ChannelSubjectContains(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldContains(FieldChannelSubject, v))
|
|
}
|
|
|
|
// ChannelSubjectHasPrefix applies the HasPrefix predicate on the "channel_subject" field.
|
|
func ChannelSubjectHasPrefix(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldHasPrefix(FieldChannelSubject, v))
|
|
}
|
|
|
|
// ChannelSubjectHasSuffix applies the HasSuffix predicate on the "channel_subject" field.
|
|
func ChannelSubjectHasSuffix(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldHasSuffix(FieldChannelSubject, v))
|
|
}
|
|
|
|
// ChannelSubjectEqualFold applies the EqualFold predicate on the "channel_subject" field.
|
|
func ChannelSubjectEqualFold(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldEqualFold(FieldChannelSubject, v))
|
|
}
|
|
|
|
// ChannelSubjectContainsFold applies the ContainsFold predicate on the "channel_subject" field.
|
|
func ChannelSubjectContainsFold(v string) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.FieldContainsFold(FieldChannelSubject, v))
|
|
}
|
|
|
|
// HasIdentity applies the HasEdge predicate on the "identity" edge.
|
|
func HasIdentity() predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(func(s *sql.Selector) {
|
|
step := sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, IdentityTable, IdentityColumn),
|
|
)
|
|
sqlgraph.HasNeighbors(s, step)
|
|
})
|
|
}
|
|
|
|
// HasIdentityWith applies the HasEdge predicate on the "identity" edge with a given conditions (other predicates).
|
|
func HasIdentityWith(preds ...predicate.AuthIdentity) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(func(s *sql.Selector) {
|
|
step := newIdentityStep()
|
|
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.AuthIdentityChannel) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.AndPredicates(predicates...))
|
|
}
|
|
|
|
// Or groups predicates with the OR operator between them.
|
|
func Or(predicates ...predicate.AuthIdentityChannel) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.OrPredicates(predicates...))
|
|
}
|
|
|
|
// Not applies the not operator on the given predicate.
|
|
func Not(p predicate.AuthIdentityChannel) predicate.AuthIdentityChannel {
|
|
return predicate.AuthIdentityChannel(sql.NotPredicates(p))
|
|
}
|