// Code generated by ent, DO NOT EDIT. package xunji import ( "time" "wechat-api/ent/predicate" "entgo.io/ent/dialect/sql" ) // ID filters vertices based on their ID field. func ID(id uint64) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldID, id)) } // IDEQ applies the EQ predicate on the ID field. func IDEQ(id uint64) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldID, id)) } // IDNEQ applies the NEQ predicate on the ID field. func IDNEQ(id uint64) predicate.Xunji { return predicate.Xunji(sql.FieldNEQ(FieldID, id)) } // IDIn applies the In predicate on the ID field. func IDIn(ids ...uint64) predicate.Xunji { return predicate.Xunji(sql.FieldIn(FieldID, ids...)) } // IDNotIn applies the NotIn predicate on the ID field. func IDNotIn(ids ...uint64) predicate.Xunji { return predicate.Xunji(sql.FieldNotIn(FieldID, ids...)) } // IDGT applies the GT predicate on the ID field. func IDGT(id uint64) predicate.Xunji { return predicate.Xunji(sql.FieldGT(FieldID, id)) } // IDGTE applies the GTE predicate on the ID field. func IDGTE(id uint64) predicate.Xunji { return predicate.Xunji(sql.FieldGTE(FieldID, id)) } // IDLT applies the LT predicate on the ID field. func IDLT(id uint64) predicate.Xunji { return predicate.Xunji(sql.FieldLT(FieldID, id)) } // IDLTE applies the LTE predicate on the ID field. func IDLTE(id uint64) predicate.Xunji { return predicate.Xunji(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.Xunji { return predicate.Xunji(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.Xunji { return predicate.Xunji(sql.FieldEQ(FieldUpdatedAt, v)) } // Status applies equality check predicate on the "status" field. It's identical to StatusEQ. func Status(v uint8) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldStatus, v)) } // DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ. func DeletedAt(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldDeletedAt, v)) } // AppKey applies equality check predicate on the "app_key" field. It's identical to AppKeyEQ. func AppKey(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldAppKey, v)) } // AppSecret applies equality check predicate on the "app_secret" field. It's identical to AppSecretEQ. func AppSecret(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldAppSecret, v)) } // Token applies equality check predicate on the "token" field. It's identical to TokenEQ. func Token(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldToken, v)) } // EncodingKey applies equality check predicate on the "encoding_key" field. It's identical to EncodingKeyEQ. func EncodingKey(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldEncodingKey, v)) } // OrganizationID applies equality check predicate on the "organization_id" field. It's identical to OrganizationIDEQ. func OrganizationID(v uint64) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldOrganizationID, v)) } // CreatedAtEQ applies the EQ predicate on the "created_at" field. func CreatedAtEQ(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldCreatedAt, v)) } // CreatedAtNEQ applies the NEQ predicate on the "created_at" field. func CreatedAtNEQ(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldNEQ(FieldCreatedAt, v)) } // CreatedAtIn applies the In predicate on the "created_at" field. func CreatedAtIn(vs ...time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldIn(FieldCreatedAt, vs...)) } // CreatedAtNotIn applies the NotIn predicate on the "created_at" field. func CreatedAtNotIn(vs ...time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldNotIn(FieldCreatedAt, vs...)) } // CreatedAtGT applies the GT predicate on the "created_at" field. func CreatedAtGT(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldGT(FieldCreatedAt, v)) } // CreatedAtGTE applies the GTE predicate on the "created_at" field. func CreatedAtGTE(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldGTE(FieldCreatedAt, v)) } // CreatedAtLT applies the LT predicate on the "created_at" field. func CreatedAtLT(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldLT(FieldCreatedAt, v)) } // CreatedAtLTE applies the LTE predicate on the "created_at" field. func CreatedAtLTE(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldLTE(FieldCreatedAt, v)) } // UpdatedAtEQ applies the EQ predicate on the "updated_at" field. func UpdatedAtEQ(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldUpdatedAt, v)) } // UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field. func UpdatedAtNEQ(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldNEQ(FieldUpdatedAt, v)) } // UpdatedAtIn applies the In predicate on the "updated_at" field. func UpdatedAtIn(vs ...time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldIn(FieldUpdatedAt, vs...)) } // UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field. func UpdatedAtNotIn(vs ...time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldNotIn(FieldUpdatedAt, vs...)) } // UpdatedAtGT applies the GT predicate on the "updated_at" field. func UpdatedAtGT(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldGT(FieldUpdatedAt, v)) } // UpdatedAtGTE applies the GTE predicate on the "updated_at" field. func UpdatedAtGTE(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldGTE(FieldUpdatedAt, v)) } // UpdatedAtLT applies the LT predicate on the "updated_at" field. func UpdatedAtLT(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldLT(FieldUpdatedAt, v)) } // UpdatedAtLTE applies the LTE predicate on the "updated_at" field. func UpdatedAtLTE(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldLTE(FieldUpdatedAt, v)) } // StatusEQ applies the EQ predicate on the "status" field. func StatusEQ(v uint8) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldStatus, v)) } // StatusNEQ applies the NEQ predicate on the "status" field. func StatusNEQ(v uint8) predicate.Xunji { return predicate.Xunji(sql.FieldNEQ(FieldStatus, v)) } // StatusIn applies the In predicate on the "status" field. func StatusIn(vs ...uint8) predicate.Xunji { return predicate.Xunji(sql.FieldIn(FieldStatus, vs...)) } // StatusNotIn applies the NotIn predicate on the "status" field. func StatusNotIn(vs ...uint8) predicate.Xunji { return predicate.Xunji(sql.FieldNotIn(FieldStatus, vs...)) } // StatusGT applies the GT predicate on the "status" field. func StatusGT(v uint8) predicate.Xunji { return predicate.Xunji(sql.FieldGT(FieldStatus, v)) } // StatusGTE applies the GTE predicate on the "status" field. func StatusGTE(v uint8) predicate.Xunji { return predicate.Xunji(sql.FieldGTE(FieldStatus, v)) } // StatusLT applies the LT predicate on the "status" field. func StatusLT(v uint8) predicate.Xunji { return predicate.Xunji(sql.FieldLT(FieldStatus, v)) } // StatusLTE applies the LTE predicate on the "status" field. func StatusLTE(v uint8) predicate.Xunji { return predicate.Xunji(sql.FieldLTE(FieldStatus, v)) } // StatusIsNil applies the IsNil predicate on the "status" field. func StatusIsNil() predicate.Xunji { return predicate.Xunji(sql.FieldIsNull(FieldStatus)) } // StatusNotNil applies the NotNil predicate on the "status" field. func StatusNotNil() predicate.Xunji { return predicate.Xunji(sql.FieldNotNull(FieldStatus)) } // DeletedAtEQ applies the EQ predicate on the "deleted_at" field. func DeletedAtEQ(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldDeletedAt, v)) } // DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field. func DeletedAtNEQ(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldNEQ(FieldDeletedAt, v)) } // DeletedAtIn applies the In predicate on the "deleted_at" field. func DeletedAtIn(vs ...time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldIn(FieldDeletedAt, vs...)) } // DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field. func DeletedAtNotIn(vs ...time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldNotIn(FieldDeletedAt, vs...)) } // DeletedAtGT applies the GT predicate on the "deleted_at" field. func DeletedAtGT(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldGT(FieldDeletedAt, v)) } // DeletedAtGTE applies the GTE predicate on the "deleted_at" field. func DeletedAtGTE(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldGTE(FieldDeletedAt, v)) } // DeletedAtLT applies the LT predicate on the "deleted_at" field. func DeletedAtLT(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldLT(FieldDeletedAt, v)) } // DeletedAtLTE applies the LTE predicate on the "deleted_at" field. func DeletedAtLTE(v time.Time) predicate.Xunji { return predicate.Xunji(sql.FieldLTE(FieldDeletedAt, v)) } // DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field. func DeletedAtIsNil() predicate.Xunji { return predicate.Xunji(sql.FieldIsNull(FieldDeletedAt)) } // DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field. func DeletedAtNotNil() predicate.Xunji { return predicate.Xunji(sql.FieldNotNull(FieldDeletedAt)) } // AppKeyEQ applies the EQ predicate on the "app_key" field. func AppKeyEQ(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldAppKey, v)) } // AppKeyNEQ applies the NEQ predicate on the "app_key" field. func AppKeyNEQ(v string) predicate.Xunji { return predicate.Xunji(sql.FieldNEQ(FieldAppKey, v)) } // AppKeyIn applies the In predicate on the "app_key" field. func AppKeyIn(vs ...string) predicate.Xunji { return predicate.Xunji(sql.FieldIn(FieldAppKey, vs...)) } // AppKeyNotIn applies the NotIn predicate on the "app_key" field. func AppKeyNotIn(vs ...string) predicate.Xunji { return predicate.Xunji(sql.FieldNotIn(FieldAppKey, vs...)) } // AppKeyGT applies the GT predicate on the "app_key" field. func AppKeyGT(v string) predicate.Xunji { return predicate.Xunji(sql.FieldGT(FieldAppKey, v)) } // AppKeyGTE applies the GTE predicate on the "app_key" field. func AppKeyGTE(v string) predicate.Xunji { return predicate.Xunji(sql.FieldGTE(FieldAppKey, v)) } // AppKeyLT applies the LT predicate on the "app_key" field. func AppKeyLT(v string) predicate.Xunji { return predicate.Xunji(sql.FieldLT(FieldAppKey, v)) } // AppKeyLTE applies the LTE predicate on the "app_key" field. func AppKeyLTE(v string) predicate.Xunji { return predicate.Xunji(sql.FieldLTE(FieldAppKey, v)) } // AppKeyContains applies the Contains predicate on the "app_key" field. func AppKeyContains(v string) predicate.Xunji { return predicate.Xunji(sql.FieldContains(FieldAppKey, v)) } // AppKeyHasPrefix applies the HasPrefix predicate on the "app_key" field. func AppKeyHasPrefix(v string) predicate.Xunji { return predicate.Xunji(sql.FieldHasPrefix(FieldAppKey, v)) } // AppKeyHasSuffix applies the HasSuffix predicate on the "app_key" field. func AppKeyHasSuffix(v string) predicate.Xunji { return predicate.Xunji(sql.FieldHasSuffix(FieldAppKey, v)) } // AppKeyEqualFold applies the EqualFold predicate on the "app_key" field. func AppKeyEqualFold(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEqualFold(FieldAppKey, v)) } // AppKeyContainsFold applies the ContainsFold predicate on the "app_key" field. func AppKeyContainsFold(v string) predicate.Xunji { return predicate.Xunji(sql.FieldContainsFold(FieldAppKey, v)) } // AppSecretEQ applies the EQ predicate on the "app_secret" field. func AppSecretEQ(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldAppSecret, v)) } // AppSecretNEQ applies the NEQ predicate on the "app_secret" field. func AppSecretNEQ(v string) predicate.Xunji { return predicate.Xunji(sql.FieldNEQ(FieldAppSecret, v)) } // AppSecretIn applies the In predicate on the "app_secret" field. func AppSecretIn(vs ...string) predicate.Xunji { return predicate.Xunji(sql.FieldIn(FieldAppSecret, vs...)) } // AppSecretNotIn applies the NotIn predicate on the "app_secret" field. func AppSecretNotIn(vs ...string) predicate.Xunji { return predicate.Xunji(sql.FieldNotIn(FieldAppSecret, vs...)) } // AppSecretGT applies the GT predicate on the "app_secret" field. func AppSecretGT(v string) predicate.Xunji { return predicate.Xunji(sql.FieldGT(FieldAppSecret, v)) } // AppSecretGTE applies the GTE predicate on the "app_secret" field. func AppSecretGTE(v string) predicate.Xunji { return predicate.Xunji(sql.FieldGTE(FieldAppSecret, v)) } // AppSecretLT applies the LT predicate on the "app_secret" field. func AppSecretLT(v string) predicate.Xunji { return predicate.Xunji(sql.FieldLT(FieldAppSecret, v)) } // AppSecretLTE applies the LTE predicate on the "app_secret" field. func AppSecretLTE(v string) predicate.Xunji { return predicate.Xunji(sql.FieldLTE(FieldAppSecret, v)) } // AppSecretContains applies the Contains predicate on the "app_secret" field. func AppSecretContains(v string) predicate.Xunji { return predicate.Xunji(sql.FieldContains(FieldAppSecret, v)) } // AppSecretHasPrefix applies the HasPrefix predicate on the "app_secret" field. func AppSecretHasPrefix(v string) predicate.Xunji { return predicate.Xunji(sql.FieldHasPrefix(FieldAppSecret, v)) } // AppSecretHasSuffix applies the HasSuffix predicate on the "app_secret" field. func AppSecretHasSuffix(v string) predicate.Xunji { return predicate.Xunji(sql.FieldHasSuffix(FieldAppSecret, v)) } // AppSecretEqualFold applies the EqualFold predicate on the "app_secret" field. func AppSecretEqualFold(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEqualFold(FieldAppSecret, v)) } // AppSecretContainsFold applies the ContainsFold predicate on the "app_secret" field. func AppSecretContainsFold(v string) predicate.Xunji { return predicate.Xunji(sql.FieldContainsFold(FieldAppSecret, v)) } // TokenEQ applies the EQ predicate on the "token" field. func TokenEQ(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldToken, v)) } // TokenNEQ applies the NEQ predicate on the "token" field. func TokenNEQ(v string) predicate.Xunji { return predicate.Xunji(sql.FieldNEQ(FieldToken, v)) } // TokenIn applies the In predicate on the "token" field. func TokenIn(vs ...string) predicate.Xunji { return predicate.Xunji(sql.FieldIn(FieldToken, vs...)) } // TokenNotIn applies the NotIn predicate on the "token" field. func TokenNotIn(vs ...string) predicate.Xunji { return predicate.Xunji(sql.FieldNotIn(FieldToken, vs...)) } // TokenGT applies the GT predicate on the "token" field. func TokenGT(v string) predicate.Xunji { return predicate.Xunji(sql.FieldGT(FieldToken, v)) } // TokenGTE applies the GTE predicate on the "token" field. func TokenGTE(v string) predicate.Xunji { return predicate.Xunji(sql.FieldGTE(FieldToken, v)) } // TokenLT applies the LT predicate on the "token" field. func TokenLT(v string) predicate.Xunji { return predicate.Xunji(sql.FieldLT(FieldToken, v)) } // TokenLTE applies the LTE predicate on the "token" field. func TokenLTE(v string) predicate.Xunji { return predicate.Xunji(sql.FieldLTE(FieldToken, v)) } // TokenContains applies the Contains predicate on the "token" field. func TokenContains(v string) predicate.Xunji { return predicate.Xunji(sql.FieldContains(FieldToken, v)) } // TokenHasPrefix applies the HasPrefix predicate on the "token" field. func TokenHasPrefix(v string) predicate.Xunji { return predicate.Xunji(sql.FieldHasPrefix(FieldToken, v)) } // TokenHasSuffix applies the HasSuffix predicate on the "token" field. func TokenHasSuffix(v string) predicate.Xunji { return predicate.Xunji(sql.FieldHasSuffix(FieldToken, v)) } // TokenEqualFold applies the EqualFold predicate on the "token" field. func TokenEqualFold(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEqualFold(FieldToken, v)) } // TokenContainsFold applies the ContainsFold predicate on the "token" field. func TokenContainsFold(v string) predicate.Xunji { return predicate.Xunji(sql.FieldContainsFold(FieldToken, v)) } // EncodingKeyEQ applies the EQ predicate on the "encoding_key" field. func EncodingKeyEQ(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldEncodingKey, v)) } // EncodingKeyNEQ applies the NEQ predicate on the "encoding_key" field. func EncodingKeyNEQ(v string) predicate.Xunji { return predicate.Xunji(sql.FieldNEQ(FieldEncodingKey, v)) } // EncodingKeyIn applies the In predicate on the "encoding_key" field. func EncodingKeyIn(vs ...string) predicate.Xunji { return predicate.Xunji(sql.FieldIn(FieldEncodingKey, vs...)) } // EncodingKeyNotIn applies the NotIn predicate on the "encoding_key" field. func EncodingKeyNotIn(vs ...string) predicate.Xunji { return predicate.Xunji(sql.FieldNotIn(FieldEncodingKey, vs...)) } // EncodingKeyGT applies the GT predicate on the "encoding_key" field. func EncodingKeyGT(v string) predicate.Xunji { return predicate.Xunji(sql.FieldGT(FieldEncodingKey, v)) } // EncodingKeyGTE applies the GTE predicate on the "encoding_key" field. func EncodingKeyGTE(v string) predicate.Xunji { return predicate.Xunji(sql.FieldGTE(FieldEncodingKey, v)) } // EncodingKeyLT applies the LT predicate on the "encoding_key" field. func EncodingKeyLT(v string) predicate.Xunji { return predicate.Xunji(sql.FieldLT(FieldEncodingKey, v)) } // EncodingKeyLTE applies the LTE predicate on the "encoding_key" field. func EncodingKeyLTE(v string) predicate.Xunji { return predicate.Xunji(sql.FieldLTE(FieldEncodingKey, v)) } // EncodingKeyContains applies the Contains predicate on the "encoding_key" field. func EncodingKeyContains(v string) predicate.Xunji { return predicate.Xunji(sql.FieldContains(FieldEncodingKey, v)) } // EncodingKeyHasPrefix applies the HasPrefix predicate on the "encoding_key" field. func EncodingKeyHasPrefix(v string) predicate.Xunji { return predicate.Xunji(sql.FieldHasPrefix(FieldEncodingKey, v)) } // EncodingKeyHasSuffix applies the HasSuffix predicate on the "encoding_key" field. func EncodingKeyHasSuffix(v string) predicate.Xunji { return predicate.Xunji(sql.FieldHasSuffix(FieldEncodingKey, v)) } // EncodingKeyEqualFold applies the EqualFold predicate on the "encoding_key" field. func EncodingKeyEqualFold(v string) predicate.Xunji { return predicate.Xunji(sql.FieldEqualFold(FieldEncodingKey, v)) } // EncodingKeyContainsFold applies the ContainsFold predicate on the "encoding_key" field. func EncodingKeyContainsFold(v string) predicate.Xunji { return predicate.Xunji(sql.FieldContainsFold(FieldEncodingKey, v)) } // OrganizationIDEQ applies the EQ predicate on the "organization_id" field. func OrganizationIDEQ(v uint64) predicate.Xunji { return predicate.Xunji(sql.FieldEQ(FieldOrganizationID, v)) } // OrganizationIDNEQ applies the NEQ predicate on the "organization_id" field. func OrganizationIDNEQ(v uint64) predicate.Xunji { return predicate.Xunji(sql.FieldNEQ(FieldOrganizationID, v)) } // OrganizationIDIn applies the In predicate on the "organization_id" field. func OrganizationIDIn(vs ...uint64) predicate.Xunji { return predicate.Xunji(sql.FieldIn(FieldOrganizationID, vs...)) } // OrganizationIDNotIn applies the NotIn predicate on the "organization_id" field. func OrganizationIDNotIn(vs ...uint64) predicate.Xunji { return predicate.Xunji(sql.FieldNotIn(FieldOrganizationID, vs...)) } // OrganizationIDGT applies the GT predicate on the "organization_id" field. func OrganizationIDGT(v uint64) predicate.Xunji { return predicate.Xunji(sql.FieldGT(FieldOrganizationID, v)) } // OrganizationIDGTE applies the GTE predicate on the "organization_id" field. func OrganizationIDGTE(v uint64) predicate.Xunji { return predicate.Xunji(sql.FieldGTE(FieldOrganizationID, v)) } // OrganizationIDLT applies the LT predicate on the "organization_id" field. func OrganizationIDLT(v uint64) predicate.Xunji { return predicate.Xunji(sql.FieldLT(FieldOrganizationID, v)) } // OrganizationIDLTE applies the LTE predicate on the "organization_id" field. func OrganizationIDLTE(v uint64) predicate.Xunji { return predicate.Xunji(sql.FieldLTE(FieldOrganizationID, v)) } // And groups predicates with the AND operator between them. func And(predicates ...predicate.Xunji) predicate.Xunji { return predicate.Xunji(sql.AndPredicates(predicates...)) } // Or groups predicates with the OR operator between them. func Or(predicates ...predicate.Xunji) predicate.Xunji { return predicate.Xunji(sql.OrPredicates(predicates...)) } // Not applies the not operator on the given predicate. func Not(p predicate.Xunji) predicate.Xunji { return predicate.Xunji(sql.NotPredicates(p)) }