Documentation
¶
Index ¶
- Constants
- Variables
- func And(predicates ...predicate.UserExtend) predicate.UserExtend
- func CreatedAt(v time.Time) predicate.UserExtend
- func CreatedAtEQ(v time.Time) predicate.UserExtend
- func CreatedAtGT(v time.Time) predicate.UserExtend
- func CreatedAtGTE(v time.Time) predicate.UserExtend
- func CreatedAtIn(vs ...time.Time) predicate.UserExtend
- func CreatedAtIsNil() predicate.UserExtend
- func CreatedAtLT(v time.Time) predicate.UserExtend
- func CreatedAtLTE(v time.Time) predicate.UserExtend
- func CreatedAtNEQ(v time.Time) predicate.UserExtend
- func CreatedAtNotIn(vs ...time.Time) predicate.UserExtend
- func CreatedAtNotNil() predicate.UserExtend
- func DeletedAt(v time.Time) predicate.UserExtend
- func DeletedAtEQ(v time.Time) predicate.UserExtend
- func DeletedAtGT(v time.Time) predicate.UserExtend
- func DeletedAtGTE(v time.Time) predicate.UserExtend
- func DeletedAtIn(vs ...time.Time) predicate.UserExtend
- func DeletedAtIsNil() predicate.UserExtend
- func DeletedAtLT(v time.Time) predicate.UserExtend
- func DeletedAtLTE(v time.Time) predicate.UserExtend
- func DeletedAtNEQ(v time.Time) predicate.UserExtend
- func DeletedAtNotIn(vs ...time.Time) predicate.UserExtend
- func DeletedAtNotNil() predicate.UserExtend
- func ID(id int64) predicate.UserExtend
- func IDEQ(id int64) predicate.UserExtend
- func IDGT(id int64) predicate.UserExtend
- func IDGTE(id int64) predicate.UserExtend
- func IDIn(ids ...int64) predicate.UserExtend
- func IDLT(id int64) predicate.UserExtend
- func IDLTE(id int64) predicate.UserExtend
- func IDNEQ(id int64) predicate.UserExtend
- func IDNotIn(ids ...int64) predicate.UserExtend
- func Not(p predicate.UserExtend) predicate.UserExtend
- func Or(predicates ...predicate.UserExtend) predicate.UserExtend
- func UpdatedAt(v time.Time) predicate.UserExtend
- func UpdatedAtEQ(v time.Time) predicate.UserExtend
- func UpdatedAtGT(v time.Time) predicate.UserExtend
- func UpdatedAtGTE(v time.Time) predicate.UserExtend
- func UpdatedAtIn(vs ...time.Time) predicate.UserExtend
- func UpdatedAtIsNil() predicate.UserExtend
- func UpdatedAtLT(v time.Time) predicate.UserExtend
- func UpdatedAtLTE(v time.Time) predicate.UserExtend
- func UpdatedAtNEQ(v time.Time) predicate.UserExtend
- func UpdatedAtNotIn(vs ...time.Time) predicate.UserExtend
- func UpdatedAtNotNil() predicate.UserExtend
- func UserIdentity(v string) predicate.UserExtend
- func UserIdentityContains(v string) predicate.UserExtend
- func UserIdentityContainsFold(v string) predicate.UserExtend
- func UserIdentityEQ(v string) predicate.UserExtend
- func UserIdentityEqualFold(v string) predicate.UserExtend
- func UserIdentityGT(v string) predicate.UserExtend
- func UserIdentityGTE(v string) predicate.UserExtend
- func UserIdentityHasPrefix(v string) predicate.UserExtend
- func UserIdentityHasSuffix(v string) predicate.UserExtend
- func UserIdentityIn(vs ...string) predicate.UserExtend
- func UserIdentityIsNil() predicate.UserExtend
- func UserIdentityLT(v string) predicate.UserExtend
- func UserIdentityLTE(v string) predicate.UserExtend
- func UserIdentityNEQ(v string) predicate.UserExtend
- func UserIdentityNotIn(vs ...string) predicate.UserExtend
- func UserIdentityNotNil() predicate.UserExtend
- func ValidColumn(column string) bool
Constants ¶
const ( // Label holds the string label denoting the userextend type in the database. Label = "user_extend" // FieldID holds the string denoting the id field in the database. FieldID = "id" // FieldUserIdentity holds the string denoting the user_identity field in the database. FieldUserIdentity = "user_identity" // FieldCreatedAt holds the string denoting the created_at field in the database. FieldCreatedAt = "created_at" // FieldUpdatedAt holds the string denoting the updated_at field in the database. FieldUpdatedAt = "updated_at" // FieldDeletedAt holds the string denoting the deleted_at field in the database. FieldDeletedAt = "deleted_at" // Table holds the table name of the userextend in the database. Table = "user_extend" )
Variables ¶
var Columns = []string{ FieldID, FieldUserIdentity, FieldCreatedAt, FieldUpdatedAt, FieldDeletedAt, }
Columns holds all SQL columns for userextend fields.
Functions ¶
func And ¶
func And(predicates ...predicate.UserExtend) predicate.UserExtend
And groups list of predicates with the AND operator between them.
func CreatedAt ¶
func CreatedAt(v time.Time) predicate.UserExtend
CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.
func CreatedAtEQ ¶
func CreatedAtEQ(v time.Time) predicate.UserExtend
CreatedAtEQ applies the EQ predicate on the "created_at" field.
func CreatedAtGT ¶
func CreatedAtGT(v time.Time) predicate.UserExtend
CreatedAtGT applies the GT predicate on the "created_at" field.
func CreatedAtGTE ¶
func CreatedAtGTE(v time.Time) predicate.UserExtend
CreatedAtGTE applies the GTE predicate on the "created_at" field.
func CreatedAtIn ¶
func CreatedAtIn(vs ...time.Time) predicate.UserExtend
CreatedAtIn applies the In predicate on the "created_at" field.
func CreatedAtIsNil ¶
func CreatedAtIsNil() predicate.UserExtend
CreatedAtIsNil applies the IsNil predicate on the "created_at" field.
func CreatedAtLT ¶
func CreatedAtLT(v time.Time) predicate.UserExtend
CreatedAtLT applies the LT predicate on the "created_at" field.
func CreatedAtLTE ¶
func CreatedAtLTE(v time.Time) predicate.UserExtend
CreatedAtLTE applies the LTE predicate on the "created_at" field.
func CreatedAtNEQ ¶
func CreatedAtNEQ(v time.Time) predicate.UserExtend
CreatedAtNEQ applies the NEQ predicate on the "created_at" field.
func CreatedAtNotIn ¶
func CreatedAtNotIn(vs ...time.Time) predicate.UserExtend
CreatedAtNotIn applies the NotIn predicate on the "created_at" field.
func CreatedAtNotNil ¶
func CreatedAtNotNil() predicate.UserExtend
CreatedAtNotNil applies the NotNil predicate on the "created_at" field.
func DeletedAt ¶
func DeletedAt(v time.Time) predicate.UserExtend
DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.
func DeletedAtEQ ¶
func DeletedAtEQ(v time.Time) predicate.UserExtend
DeletedAtEQ applies the EQ predicate on the "deleted_at" field.
func DeletedAtGT ¶
func DeletedAtGT(v time.Time) predicate.UserExtend
DeletedAtGT applies the GT predicate on the "deleted_at" field.
func DeletedAtGTE ¶
func DeletedAtGTE(v time.Time) predicate.UserExtend
DeletedAtGTE applies the GTE predicate on the "deleted_at" field.
func DeletedAtIn ¶
func DeletedAtIn(vs ...time.Time) predicate.UserExtend
DeletedAtIn applies the In predicate on the "deleted_at" field.
func DeletedAtIsNil ¶
func DeletedAtIsNil() predicate.UserExtend
DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.
func DeletedAtLT ¶
func DeletedAtLT(v time.Time) predicate.UserExtend
DeletedAtLT applies the LT predicate on the "deleted_at" field.
func DeletedAtLTE ¶
func DeletedAtLTE(v time.Time) predicate.UserExtend
DeletedAtLTE applies the LTE predicate on the "deleted_at" field.
func DeletedAtNEQ ¶
func DeletedAtNEQ(v time.Time) predicate.UserExtend
DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.
func DeletedAtNotIn ¶
func DeletedAtNotIn(vs ...time.Time) predicate.UserExtend
DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.
func DeletedAtNotNil ¶
func DeletedAtNotNil() predicate.UserExtend
DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.
func IDGTE ¶
func IDGTE(id int64) predicate.UserExtend
IDGTE applies the GTE predicate on the ID field.
func IDIn ¶
func IDIn(ids ...int64) predicate.UserExtend
IDIn applies the In predicate on the ID field.
func IDLTE ¶
func IDLTE(id int64) predicate.UserExtend
IDLTE applies the LTE predicate on the ID field.
func IDNEQ ¶
func IDNEQ(id int64) predicate.UserExtend
IDNEQ applies the NEQ predicate on the ID field.
func IDNotIn ¶
func IDNotIn(ids ...int64) predicate.UserExtend
IDNotIn applies the NotIn predicate on the ID field.
func Not ¶
func Not(p predicate.UserExtend) predicate.UserExtend
Not applies the not operator on the given predicate.
func Or ¶
func Or(predicates ...predicate.UserExtend) predicate.UserExtend
Or groups list of predicates with the OR operator between them.
func UpdatedAt ¶
func UpdatedAt(v time.Time) predicate.UserExtend
UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.
func UpdatedAtEQ ¶
func UpdatedAtEQ(v time.Time) predicate.UserExtend
UpdatedAtEQ applies the EQ predicate on the "updated_at" field.
func UpdatedAtGT ¶
func UpdatedAtGT(v time.Time) predicate.UserExtend
UpdatedAtGT applies the GT predicate on the "updated_at" field.
func UpdatedAtGTE ¶
func UpdatedAtGTE(v time.Time) predicate.UserExtend
UpdatedAtGTE applies the GTE predicate on the "updated_at" field.
func UpdatedAtIn ¶
func UpdatedAtIn(vs ...time.Time) predicate.UserExtend
UpdatedAtIn applies the In predicate on the "updated_at" field.
func UpdatedAtIsNil ¶
func UpdatedAtIsNil() predicate.UserExtend
UpdatedAtIsNil applies the IsNil predicate on the "updated_at" field.
func UpdatedAtLT ¶
func UpdatedAtLT(v time.Time) predicate.UserExtend
UpdatedAtLT applies the LT predicate on the "updated_at" field.
func UpdatedAtLTE ¶
func UpdatedAtLTE(v time.Time) predicate.UserExtend
UpdatedAtLTE applies the LTE predicate on the "updated_at" field.
func UpdatedAtNEQ ¶
func UpdatedAtNEQ(v time.Time) predicate.UserExtend
UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.
func UpdatedAtNotIn ¶
func UpdatedAtNotIn(vs ...time.Time) predicate.UserExtend
UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.
func UpdatedAtNotNil ¶
func UpdatedAtNotNil() predicate.UserExtend
UpdatedAtNotNil applies the NotNil predicate on the "updated_at" field.
func UserIdentity ¶
func UserIdentity(v string) predicate.UserExtend
UserIdentity applies equality check predicate on the "user_identity" field. It's identical to UserIdentityEQ.
func UserIdentityContains ¶
func UserIdentityContains(v string) predicate.UserExtend
UserIdentityContains applies the Contains predicate on the "user_identity" field.
func UserIdentityContainsFold ¶
func UserIdentityContainsFold(v string) predicate.UserExtend
UserIdentityContainsFold applies the ContainsFold predicate on the "user_identity" field.
func UserIdentityEQ ¶
func UserIdentityEQ(v string) predicate.UserExtend
UserIdentityEQ applies the EQ predicate on the "user_identity" field.
func UserIdentityEqualFold ¶
func UserIdentityEqualFold(v string) predicate.UserExtend
UserIdentityEqualFold applies the EqualFold predicate on the "user_identity" field.
func UserIdentityGT ¶
func UserIdentityGT(v string) predicate.UserExtend
UserIdentityGT applies the GT predicate on the "user_identity" field.
func UserIdentityGTE ¶
func UserIdentityGTE(v string) predicate.UserExtend
UserIdentityGTE applies the GTE predicate on the "user_identity" field.
func UserIdentityHasPrefix ¶
func UserIdentityHasPrefix(v string) predicate.UserExtend
UserIdentityHasPrefix applies the HasPrefix predicate on the "user_identity" field.
func UserIdentityHasSuffix ¶
func UserIdentityHasSuffix(v string) predicate.UserExtend
UserIdentityHasSuffix applies the HasSuffix predicate on the "user_identity" field.
func UserIdentityIn ¶
func UserIdentityIn(vs ...string) predicate.UserExtend
UserIdentityIn applies the In predicate on the "user_identity" field.
func UserIdentityIsNil ¶
func UserIdentityIsNil() predicate.UserExtend
UserIdentityIsNil applies the IsNil predicate on the "user_identity" field.
func UserIdentityLT ¶
func UserIdentityLT(v string) predicate.UserExtend
UserIdentityLT applies the LT predicate on the "user_identity" field.
func UserIdentityLTE ¶
func UserIdentityLTE(v string) predicate.UserExtend
UserIdentityLTE applies the LTE predicate on the "user_identity" field.
func UserIdentityNEQ ¶
func UserIdentityNEQ(v string) predicate.UserExtend
UserIdentityNEQ applies the NEQ predicate on the "user_identity" field.
func UserIdentityNotIn ¶
func UserIdentityNotIn(vs ...string) predicate.UserExtend
UserIdentityNotIn applies the NotIn predicate on the "user_identity" field.
func UserIdentityNotNil ¶
func UserIdentityNotNil() predicate.UserExtend
UserIdentityNotNil applies the NotNil predicate on the "user_identity" field.
func ValidColumn ¶
ValidColumn reports if the column name is valid (part of the table columns).
Types ¶
This section is empty.