clean_user

package
v0.0.0-...-a1dc8d7 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 18, 2024 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the clean_user type in the database.
	Label = "clean_user"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldPublicInfo holds the string denoting the public_info field in the database.
	FieldPublicInfo = "public_info"
	// Table holds the table name of the clean_user in the database.
	Table = "clean_users"
)

Variables

Columns holds all SQL columns for clean_user fields.

Functions

func And

func And(predicates ...predicate.CleanUser) predicate.CleanUser

And groups predicates with the AND operator between them.

func ID

func ID(v int) predicate.CleanUser

ID applies equality check predicate on the "id" field. It's identical to IDEQ.

func IDEQ

func IDEQ(v int) predicate.CleanUser

IDEQ applies the EQ predicate on the "id" field.

func IDGT

func IDGT(v int) predicate.CleanUser

IDGT applies the GT predicate on the "id" field.

func IDGTE

func IDGTE(v int) predicate.CleanUser

IDGTE applies the GTE predicate on the "id" field.

func IDIn

func IDIn(vs ...int) predicate.CleanUser

IDIn applies the In predicate on the "id" field.

func IDLT

func IDLT(v int) predicate.CleanUser

IDLT applies the LT predicate on the "id" field.

func IDLTE

func IDLTE(v int) predicate.CleanUser

IDLTE applies the LTE predicate on the "id" field.

func IDNEQ

func IDNEQ(v int) predicate.CleanUser

IDNEQ applies the NEQ predicate on the "id" field.

func IDNotIn

func IDNotIn(vs ...int) predicate.CleanUser

IDNotIn applies the NotIn predicate on the "id" field.

func Name

func Name(v string) predicate.CleanUser

Name applies equality check predicate on the "name" field. It's identical to NameEQ.

func NameContains

func NameContains(v string) predicate.CleanUser

NameContains applies the Contains predicate on the "name" field.

func NameContainsFold

func NameContainsFold(v string) predicate.CleanUser

NameContainsFold applies the ContainsFold predicate on the "name" field.

func NameEQ

func NameEQ(v string) predicate.CleanUser

NameEQ applies the EQ predicate on the "name" field.

func NameEqualFold

func NameEqualFold(v string) predicate.CleanUser

NameEqualFold applies the EqualFold predicate on the "name" field.

func NameGT

func NameGT(v string) predicate.CleanUser

NameGT applies the GT predicate on the "name" field.

func NameGTE

func NameGTE(v string) predicate.CleanUser

NameGTE applies the GTE predicate on the "name" field.

func NameHasPrefix

func NameHasPrefix(v string) predicate.CleanUser

NameHasPrefix applies the HasPrefix predicate on the "name" field.

func NameHasSuffix

func NameHasSuffix(v string) predicate.CleanUser

NameHasSuffix applies the HasSuffix predicate on the "name" field.

func NameIn

func NameIn(vs ...string) predicate.CleanUser

NameIn applies the In predicate on the "name" field.

func NameLT

func NameLT(v string) predicate.CleanUser

NameLT applies the LT predicate on the "name" field.

func NameLTE

func NameLTE(v string) predicate.CleanUser

NameLTE applies the LTE predicate on the "name" field.

func NameNEQ

func NameNEQ(v string) predicate.CleanUser

NameNEQ applies the NEQ predicate on the "name" field.

func NameNotIn

func NameNotIn(vs ...string) predicate.CleanUser

NameNotIn applies the NotIn predicate on the "name" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.CleanUser) predicate.CleanUser

Or groups predicates with the OR operator between them.

func PublicInfo

func PublicInfo(v string) predicate.CleanUser

PublicInfo applies equality check predicate on the "public_info" field. It's identical to PublicInfoEQ.

func PublicInfoContains

func PublicInfoContains(v string) predicate.CleanUser

PublicInfoContains applies the Contains predicate on the "public_info" field.

func PublicInfoContainsFold

func PublicInfoContainsFold(v string) predicate.CleanUser

PublicInfoContainsFold applies the ContainsFold predicate on the "public_info" field.

func PublicInfoEQ

func PublicInfoEQ(v string) predicate.CleanUser

PublicInfoEQ applies the EQ predicate on the "public_info" field.

func PublicInfoEqualFold

func PublicInfoEqualFold(v string) predicate.CleanUser

PublicInfoEqualFold applies the EqualFold predicate on the "public_info" field.

func PublicInfoGT

func PublicInfoGT(v string) predicate.CleanUser

PublicInfoGT applies the GT predicate on the "public_info" field.

func PublicInfoGTE

func PublicInfoGTE(v string) predicate.CleanUser

PublicInfoGTE applies the GTE predicate on the "public_info" field.

func PublicInfoHasPrefix

func PublicInfoHasPrefix(v string) predicate.CleanUser

PublicInfoHasPrefix applies the HasPrefix predicate on the "public_info" field.

func PublicInfoHasSuffix

func PublicInfoHasSuffix(v string) predicate.CleanUser

PublicInfoHasSuffix applies the HasSuffix predicate on the "public_info" field.

func PublicInfoIn

func PublicInfoIn(vs ...string) predicate.CleanUser

PublicInfoIn applies the In predicate on the "public_info" field.

func PublicInfoLT

func PublicInfoLT(v string) predicate.CleanUser

PublicInfoLT applies the LT predicate on the "public_info" field.

func PublicInfoLTE

func PublicInfoLTE(v string) predicate.CleanUser

PublicInfoLTE applies the LTE predicate on the "public_info" field.

func PublicInfoNEQ

func PublicInfoNEQ(v string) predicate.CleanUser

PublicInfoNEQ applies the NEQ predicate on the "public_info" field.

func PublicInfoNotIn

func PublicInfoNotIn(vs ...string) predicate.CleanUser

PublicInfoNotIn applies the NotIn predicate on the "public_info" field.

func ValidColumn

func ValidColumn(column string) bool

ValidColumn reports if the column name is valid (part of the table columns).

Types

type OrderOption

type OrderOption func(*sql.Selector)

OrderOption defines the ordering options for the CleanUser queries.

func ByID

func ByID(opts ...sql.OrderTermOption) OrderOption

ByID orders the results by the id field.

func ByName

func ByName(opts ...sql.OrderTermOption) OrderOption

ByName orders the results by the name field.

func ByPublicInfo

func ByPublicInfo(opts ...sql.OrderTermOption) OrderOption

ByPublicInfo orders the results by the public_info field.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL