sysuser

package
v1.2.0 Latest Latest
Warning

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

Go to latest
Published: Jun 3, 2021 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Label holds the string label denoting the sysuser type in the database.
	Label = "sys_user"
	// FieldID holds the string denoting the id field in the database.
	FieldID = "id"
	// FieldIsDel holds the string denoting the is_del field in the database.
	FieldIsDel = "is_del"
	// FieldSort holds the string denoting the sort field in the database.
	FieldSort = "sort"
	// FieldCreatedAt holds the string denoting the created_at field in the database.
	FieldCreatedAt = "crtd_at"
	// FieldUpdatedAt holds the string denoting the updated_at field in the database.
	FieldUpdatedAt = "uptd_at"
	// FieldDeletedAt holds the string denoting the deleted_at field in the database.
	FieldDeletedAt = "dltd_at"
	// FieldStatus holds the string denoting the status field in the database.
	FieldStatus = "status"
	// FieldUserName holds the string denoting the user_name field in the database.
	FieldUserName = "user_name"
	// FieldRealName holds the string denoting the real_name field in the database.
	FieldRealName = "real_name"
	// FieldFirstName holds the string denoting the first_name field in the database.
	FieldFirstName = "first_name"
	// FieldLastName holds the string denoting the last_name field in the database.
	FieldLastName = "last_name"
	// FieldPassword holds the string denoting the password field in the database.
	FieldPassword = "passwd"
	// FieldEmail holds the string denoting the email field in the database.
	FieldEmail = "email"
	// FieldPhone holds the string denoting the phone field in the database.
	FieldPhone = "phone"
	// FieldSalt holds the string denoting the salt field in the database.
	FieldSalt = "salt"
	// Table holds the table name of the sysuser in the database.
	Table = "sys_users"
)

Variables

View Source
var (
	// DefaultIsDel holds the default value on creation for the "is_del" field.
	DefaultIsDel bool
	// DefaultSort holds the default value on creation for the "sort" field.
	DefaultSort int32
	// DefaultCreatedAt holds the default value on creation for the "created_at" field.
	DefaultCreatedAt func() time.Time
	// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
	DefaultUpdatedAt func() time.Time
	// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
	UpdateDefaultUpdatedAt func() time.Time
	// DefaultStatus holds the default value on creation for the "status" field.
	DefaultStatus int16
	// UserNameValidator is a validator for the "user_name" field. It is called by the builders before save.
	UserNameValidator func(string) error
	// RealNameValidator is a validator for the "real_name" field. It is called by the builders before save.
	RealNameValidator func(string) error
	// FirstNameValidator is a validator for the "first_name" field. It is called by the builders before save.
	FirstNameValidator func(string) error
	// LastNameValidator is a validator for the "last_name" field. It is called by the builders before save.
	LastNameValidator func(string) error
	// PasswordValidator is a validator for the "Password" field. It is called by the builders before save.
	PasswordValidator func(string) error
	// EmailValidator is a validator for the "Email" field. It is called by the builders before save.
	EmailValidator func(string) error
	// PhoneValidator is a validator for the "Phone" field. It is called by the builders before save.
	PhoneValidator func(string) error
	// DefaultSalt holds the default value on creation for the "salt" field.
	DefaultSalt func() string
	// DefaultID holds the default value on creation for the "id" field.
	DefaultID func() string
	// IDValidator is a validator for the "id" field. It is called by the builders before save.
	IDValidator func(string) error
)

Columns holds all SQL columns for sysuser fields.

Functions

func And

func And(predicates ...predicate.SysUser) predicate.SysUser

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.SysUser

CreatedAt applies equality check predicate on the "created_at" field. It's identical to CreatedAtEQ.

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.SysUser

CreatedAtEQ applies the EQ predicate on the "created_at" field.

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.SysUser

CreatedAtGT applies the GT predicate on the "created_at" field.

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.SysUser

CreatedAtGTE applies the GTE predicate on the "created_at" field.

func CreatedAtIn

func CreatedAtIn(vs ...time.Time) predicate.SysUser

CreatedAtIn applies the In predicate on the "created_at" field.

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.SysUser

CreatedAtLT applies the LT predicate on the "created_at" field.

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.SysUser

CreatedAtLTE applies the LTE predicate on the "created_at" field.

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.SysUser

CreatedAtNEQ applies the NEQ predicate on the "created_at" field.

func CreatedAtNotIn

func CreatedAtNotIn(vs ...time.Time) predicate.SysUser

CreatedAtNotIn applies the NotIn predicate on the "created_at" field.

func DeletedAt

func DeletedAt(v time.Time) predicate.SysUser

DeletedAt applies equality check predicate on the "deleted_at" field. It's identical to DeletedAtEQ.

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.SysUser

DeletedAtEQ applies the EQ predicate on the "deleted_at" field.

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.SysUser

DeletedAtGT applies the GT predicate on the "deleted_at" field.

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.SysUser

DeletedAtGTE applies the GTE predicate on the "deleted_at" field.

func DeletedAtIn

func DeletedAtIn(vs ...time.Time) predicate.SysUser

DeletedAtIn applies the In predicate on the "deleted_at" field.

func DeletedAtIsNil

func DeletedAtIsNil() predicate.SysUser

DeletedAtIsNil applies the IsNil predicate on the "deleted_at" field.

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.SysUser

DeletedAtLT applies the LT predicate on the "deleted_at" field.

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.SysUser

DeletedAtLTE applies the LTE predicate on the "deleted_at" field.

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.SysUser

DeletedAtNEQ applies the NEQ predicate on the "deleted_at" field.

func DeletedAtNotIn

func DeletedAtNotIn(vs ...time.Time) predicate.SysUser

DeletedAtNotIn applies the NotIn predicate on the "deleted_at" field.

func DeletedAtNotNil

func DeletedAtNotNil() predicate.SysUser

DeletedAtNotNil applies the NotNil predicate on the "deleted_at" field.

func Email

func Email(v string) predicate.SysUser

Email applies equality check predicate on the "Email" field. It's identical to EmailEQ.

func EmailContains

func EmailContains(v string) predicate.SysUser

EmailContains applies the Contains predicate on the "Email" field.

func EmailContainsFold

func EmailContainsFold(v string) predicate.SysUser

EmailContainsFold applies the ContainsFold predicate on the "Email" field.

func EmailEQ

func EmailEQ(v string) predicate.SysUser

EmailEQ applies the EQ predicate on the "Email" field.

func EmailEqualFold

func EmailEqualFold(v string) predicate.SysUser

EmailEqualFold applies the EqualFold predicate on the "Email" field.

func EmailGT

func EmailGT(v string) predicate.SysUser

EmailGT applies the GT predicate on the "Email" field.

func EmailGTE

func EmailGTE(v string) predicate.SysUser

EmailGTE applies the GTE predicate on the "Email" field.

func EmailHasPrefix

func EmailHasPrefix(v string) predicate.SysUser

EmailHasPrefix applies the HasPrefix predicate on the "Email" field.

func EmailHasSuffix

func EmailHasSuffix(v string) predicate.SysUser

EmailHasSuffix applies the HasSuffix predicate on the "Email" field.

func EmailIn

func EmailIn(vs ...string) predicate.SysUser

EmailIn applies the In predicate on the "Email" field.

func EmailLT

func EmailLT(v string) predicate.SysUser

EmailLT applies the LT predicate on the "Email" field.

func EmailLTE

func EmailLTE(v string) predicate.SysUser

EmailLTE applies the LTE predicate on the "Email" field.

func EmailNEQ

func EmailNEQ(v string) predicate.SysUser

EmailNEQ applies the NEQ predicate on the "Email" field.

func EmailNotIn

func EmailNotIn(vs ...string) predicate.SysUser

EmailNotIn applies the NotIn predicate on the "Email" field.

func FirstName

func FirstName(v string) predicate.SysUser

FirstName applies equality check predicate on the "first_name" field. It's identical to FirstNameEQ.

func FirstNameContains

func FirstNameContains(v string) predicate.SysUser

FirstNameContains applies the Contains predicate on the "first_name" field.

func FirstNameContainsFold

func FirstNameContainsFold(v string) predicate.SysUser

FirstNameContainsFold applies the ContainsFold predicate on the "first_name" field.

func FirstNameEQ

func FirstNameEQ(v string) predicate.SysUser

FirstNameEQ applies the EQ predicate on the "first_name" field.

func FirstNameEqualFold

func FirstNameEqualFold(v string) predicate.SysUser

FirstNameEqualFold applies the EqualFold predicate on the "first_name" field.

func FirstNameGT

func FirstNameGT(v string) predicate.SysUser

FirstNameGT applies the GT predicate on the "first_name" field.

func FirstNameGTE

func FirstNameGTE(v string) predicate.SysUser

FirstNameGTE applies the GTE predicate on the "first_name" field.

func FirstNameHasPrefix

func FirstNameHasPrefix(v string) predicate.SysUser

FirstNameHasPrefix applies the HasPrefix predicate on the "first_name" field.

func FirstNameHasSuffix

func FirstNameHasSuffix(v string) predicate.SysUser

FirstNameHasSuffix applies the HasSuffix predicate on the "first_name" field.

func FirstNameIn

func FirstNameIn(vs ...string) predicate.SysUser

FirstNameIn applies the In predicate on the "first_name" field.

func FirstNameIsNil

func FirstNameIsNil() predicate.SysUser

FirstNameIsNil applies the IsNil predicate on the "first_name" field.

func FirstNameLT

func FirstNameLT(v string) predicate.SysUser

FirstNameLT applies the LT predicate on the "first_name" field.

func FirstNameLTE

func FirstNameLTE(v string) predicate.SysUser

FirstNameLTE applies the LTE predicate on the "first_name" field.

func FirstNameNEQ

func FirstNameNEQ(v string) predicate.SysUser

FirstNameNEQ applies the NEQ predicate on the "first_name" field.

func FirstNameNotIn

func FirstNameNotIn(vs ...string) predicate.SysUser

FirstNameNotIn applies the NotIn predicate on the "first_name" field.

func FirstNameNotNil

func FirstNameNotNil() predicate.SysUser

FirstNameNotNil applies the NotNil predicate on the "first_name" field.

func ID

func ID(id string) predicate.SysUser

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id string) predicate.SysUser

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id string) predicate.SysUser

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.SysUser

IDGTE applies the GTE predicate on the ID field.

func IDIn

func IDIn(ids ...string) predicate.SysUser

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.SysUser

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.SysUser

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.SysUser

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

func IDNotIn(ids ...string) predicate.SysUser

IDNotIn applies the NotIn predicate on the ID field.

func IsDel

func IsDel(v bool) predicate.SysUser

IsDel applies equality check predicate on the "is_del" field. It's identical to IsDelEQ.

func IsDelEQ

func IsDelEQ(v bool) predicate.SysUser

IsDelEQ applies the EQ predicate on the "is_del" field.

func IsDelNEQ

func IsDelNEQ(v bool) predicate.SysUser

IsDelNEQ applies the NEQ predicate on the "is_del" field.

func LastName

func LastName(v string) predicate.SysUser

LastName applies equality check predicate on the "last_name" field. It's identical to LastNameEQ.

func LastNameContains

func LastNameContains(v string) predicate.SysUser

LastNameContains applies the Contains predicate on the "last_name" field.

func LastNameContainsFold

func LastNameContainsFold(v string) predicate.SysUser

LastNameContainsFold applies the ContainsFold predicate on the "last_name" field.

func LastNameEQ

func LastNameEQ(v string) predicate.SysUser

LastNameEQ applies the EQ predicate on the "last_name" field.

func LastNameEqualFold

func LastNameEqualFold(v string) predicate.SysUser

LastNameEqualFold applies the EqualFold predicate on the "last_name" field.

func LastNameGT

func LastNameGT(v string) predicate.SysUser

LastNameGT applies the GT predicate on the "last_name" field.

func LastNameGTE

func LastNameGTE(v string) predicate.SysUser

LastNameGTE applies the GTE predicate on the "last_name" field.

func LastNameHasPrefix

func LastNameHasPrefix(v string) predicate.SysUser

LastNameHasPrefix applies the HasPrefix predicate on the "last_name" field.

func LastNameHasSuffix

func LastNameHasSuffix(v string) predicate.SysUser

LastNameHasSuffix applies the HasSuffix predicate on the "last_name" field.

func LastNameIn

func LastNameIn(vs ...string) predicate.SysUser

LastNameIn applies the In predicate on the "last_name" field.

func LastNameIsNil

func LastNameIsNil() predicate.SysUser

LastNameIsNil applies the IsNil predicate on the "last_name" field.

func LastNameLT

func LastNameLT(v string) predicate.SysUser

LastNameLT applies the LT predicate on the "last_name" field.

func LastNameLTE

func LastNameLTE(v string) predicate.SysUser

LastNameLTE applies the LTE predicate on the "last_name" field.

func LastNameNEQ

func LastNameNEQ(v string) predicate.SysUser

LastNameNEQ applies the NEQ predicate on the "last_name" field.

func LastNameNotIn

func LastNameNotIn(vs ...string) predicate.SysUser

LastNameNotIn applies the NotIn predicate on the "last_name" field.

func LastNameNotNil

func LastNameNotNil() predicate.SysUser

LastNameNotNil applies the NotNil predicate on the "last_name" field.

func Not

Not applies the not operator on the given predicate.

func Or

func Or(predicates ...predicate.SysUser) predicate.SysUser

Or groups predicates with the OR operator between them.

func Password

func Password(v string) predicate.SysUser

Password applies equality check predicate on the "Password" field. It's identical to PasswordEQ.

func PasswordContains

func PasswordContains(v string) predicate.SysUser

PasswordContains applies the Contains predicate on the "Password" field.

func PasswordContainsFold

func PasswordContainsFold(v string) predicate.SysUser

PasswordContainsFold applies the ContainsFold predicate on the "Password" field.

func PasswordEQ

func PasswordEQ(v string) predicate.SysUser

PasswordEQ applies the EQ predicate on the "Password" field.

func PasswordEqualFold

func PasswordEqualFold(v string) predicate.SysUser

PasswordEqualFold applies the EqualFold predicate on the "Password" field.

func PasswordGT

func PasswordGT(v string) predicate.SysUser

PasswordGT applies the GT predicate on the "Password" field.

func PasswordGTE

func PasswordGTE(v string) predicate.SysUser

PasswordGTE applies the GTE predicate on the "Password" field.

func PasswordHasPrefix

func PasswordHasPrefix(v string) predicate.SysUser

PasswordHasPrefix applies the HasPrefix predicate on the "Password" field.

func PasswordHasSuffix

func PasswordHasSuffix(v string) predicate.SysUser

PasswordHasSuffix applies the HasSuffix predicate on the "Password" field.

func PasswordIn

func PasswordIn(vs ...string) predicate.SysUser

PasswordIn applies the In predicate on the "Password" field.

func PasswordLT

func PasswordLT(v string) predicate.SysUser

PasswordLT applies the LT predicate on the "Password" field.

func PasswordLTE

func PasswordLTE(v string) predicate.SysUser

PasswordLTE applies the LTE predicate on the "Password" field.

func PasswordNEQ

func PasswordNEQ(v string) predicate.SysUser

PasswordNEQ applies the NEQ predicate on the "Password" field.

func PasswordNotIn

func PasswordNotIn(vs ...string) predicate.SysUser

PasswordNotIn applies the NotIn predicate on the "Password" field.

func Phone

func Phone(v string) predicate.SysUser

Phone applies equality check predicate on the "Phone" field. It's identical to PhoneEQ.

func PhoneContains

func PhoneContains(v string) predicate.SysUser

PhoneContains applies the Contains predicate on the "Phone" field.

func PhoneContainsFold

func PhoneContainsFold(v string) predicate.SysUser

PhoneContainsFold applies the ContainsFold predicate on the "Phone" field.

func PhoneEQ

func PhoneEQ(v string) predicate.SysUser

PhoneEQ applies the EQ predicate on the "Phone" field.

func PhoneEqualFold

func PhoneEqualFold(v string) predicate.SysUser

PhoneEqualFold applies the EqualFold predicate on the "Phone" field.

func PhoneGT

func PhoneGT(v string) predicate.SysUser

PhoneGT applies the GT predicate on the "Phone" field.

func PhoneGTE

func PhoneGTE(v string) predicate.SysUser

PhoneGTE applies the GTE predicate on the "Phone" field.

func PhoneHasPrefix

func PhoneHasPrefix(v string) predicate.SysUser

PhoneHasPrefix applies the HasPrefix predicate on the "Phone" field.

func PhoneHasSuffix

func PhoneHasSuffix(v string) predicate.SysUser

PhoneHasSuffix applies the HasSuffix predicate on the "Phone" field.

func PhoneIn

func PhoneIn(vs ...string) predicate.SysUser

PhoneIn applies the In predicate on the "Phone" field.

func PhoneLT

func PhoneLT(v string) predicate.SysUser

PhoneLT applies the LT predicate on the "Phone" field.

func PhoneLTE

func PhoneLTE(v string) predicate.SysUser

PhoneLTE applies the LTE predicate on the "Phone" field.

func PhoneNEQ

func PhoneNEQ(v string) predicate.SysUser

PhoneNEQ applies the NEQ predicate on the "Phone" field.

func PhoneNotIn

func PhoneNotIn(vs ...string) predicate.SysUser

PhoneNotIn applies the NotIn predicate on the "Phone" field.

func RealName

func RealName(v string) predicate.SysUser

RealName applies equality check predicate on the "real_name" field. It's identical to RealNameEQ.

func RealNameContains

func RealNameContains(v string) predicate.SysUser

RealNameContains applies the Contains predicate on the "real_name" field.

func RealNameContainsFold

func RealNameContainsFold(v string) predicate.SysUser

RealNameContainsFold applies the ContainsFold predicate on the "real_name" field.

func RealNameEQ

func RealNameEQ(v string) predicate.SysUser

RealNameEQ applies the EQ predicate on the "real_name" field.

func RealNameEqualFold

func RealNameEqualFold(v string) predicate.SysUser

RealNameEqualFold applies the EqualFold predicate on the "real_name" field.

func RealNameGT

func RealNameGT(v string) predicate.SysUser

RealNameGT applies the GT predicate on the "real_name" field.

func RealNameGTE

func RealNameGTE(v string) predicate.SysUser

RealNameGTE applies the GTE predicate on the "real_name" field.

func RealNameHasPrefix

func RealNameHasPrefix(v string) predicate.SysUser

RealNameHasPrefix applies the HasPrefix predicate on the "real_name" field.

func RealNameHasSuffix

func RealNameHasSuffix(v string) predicate.SysUser

RealNameHasSuffix applies the HasSuffix predicate on the "real_name" field.

func RealNameIn

func RealNameIn(vs ...string) predicate.SysUser

RealNameIn applies the In predicate on the "real_name" field.

func RealNameIsNil

func RealNameIsNil() predicate.SysUser

RealNameIsNil applies the IsNil predicate on the "real_name" field.

func RealNameLT

func RealNameLT(v string) predicate.SysUser

RealNameLT applies the LT predicate on the "real_name" field.

func RealNameLTE

func RealNameLTE(v string) predicate.SysUser

RealNameLTE applies the LTE predicate on the "real_name" field.

func RealNameNEQ

func RealNameNEQ(v string) predicate.SysUser

RealNameNEQ applies the NEQ predicate on the "real_name" field.

func RealNameNotIn

func RealNameNotIn(vs ...string) predicate.SysUser

RealNameNotIn applies the NotIn predicate on the "real_name" field.

func RealNameNotNil

func RealNameNotNil() predicate.SysUser

RealNameNotNil applies the NotNil predicate on the "real_name" field.

func Salt

func Salt(v string) predicate.SysUser

Salt applies equality check predicate on the "salt" field. It's identical to SaltEQ.

func SaltContains

func SaltContains(v string) predicate.SysUser

SaltContains applies the Contains predicate on the "salt" field.

func SaltContainsFold

func SaltContainsFold(v string) predicate.SysUser

SaltContainsFold applies the ContainsFold predicate on the "salt" field.

func SaltEQ

func SaltEQ(v string) predicate.SysUser

SaltEQ applies the EQ predicate on the "salt" field.

func SaltEqualFold

func SaltEqualFold(v string) predicate.SysUser

SaltEqualFold applies the EqualFold predicate on the "salt" field.

func SaltGT

func SaltGT(v string) predicate.SysUser

SaltGT applies the GT predicate on the "salt" field.

func SaltGTE

func SaltGTE(v string) predicate.SysUser

SaltGTE applies the GTE predicate on the "salt" field.

func SaltHasPrefix

func SaltHasPrefix(v string) predicate.SysUser

SaltHasPrefix applies the HasPrefix predicate on the "salt" field.

func SaltHasSuffix

func SaltHasSuffix(v string) predicate.SysUser

SaltHasSuffix applies the HasSuffix predicate on the "salt" field.

func SaltIn

func SaltIn(vs ...string) predicate.SysUser

SaltIn applies the In predicate on the "salt" field.

func SaltLT

func SaltLT(v string) predicate.SysUser

SaltLT applies the LT predicate on the "salt" field.

func SaltLTE

func SaltLTE(v string) predicate.SysUser

SaltLTE applies the LTE predicate on the "salt" field.

func SaltNEQ

func SaltNEQ(v string) predicate.SysUser

SaltNEQ applies the NEQ predicate on the "salt" field.

func SaltNotIn

func SaltNotIn(vs ...string) predicate.SysUser

SaltNotIn applies the NotIn predicate on the "salt" field.

func Sort

func Sort(v int32) predicate.SysUser

Sort applies equality check predicate on the "sort" field. It's identical to SortEQ.

func SortEQ

func SortEQ(v int32) predicate.SysUser

SortEQ applies the EQ predicate on the "sort" field.

func SortGT

func SortGT(v int32) predicate.SysUser

SortGT applies the GT predicate on the "sort" field.

func SortGTE

func SortGTE(v int32) predicate.SysUser

SortGTE applies the GTE predicate on the "sort" field.

func SortIn

func SortIn(vs ...int32) predicate.SysUser

SortIn applies the In predicate on the "sort" field.

func SortLT

func SortLT(v int32) predicate.SysUser

SortLT applies the LT predicate on the "sort" field.

func SortLTE

func SortLTE(v int32) predicate.SysUser

SortLTE applies the LTE predicate on the "sort" field.

func SortNEQ

func SortNEQ(v int32) predicate.SysUser

SortNEQ applies the NEQ predicate on the "sort" field.

func SortNotIn

func SortNotIn(vs ...int32) predicate.SysUser

SortNotIn applies the NotIn predicate on the "sort" field.

func Status

func Status(v int16) predicate.SysUser

Status applies equality check predicate on the "status" field. It's identical to StatusEQ.

func StatusEQ

func StatusEQ(v int16) predicate.SysUser

StatusEQ applies the EQ predicate on the "status" field.

func StatusGT

func StatusGT(v int16) predicate.SysUser

StatusGT applies the GT predicate on the "status" field.

func StatusGTE

func StatusGTE(v int16) predicate.SysUser

StatusGTE applies the GTE predicate on the "status" field.

func StatusIn

func StatusIn(vs ...int16) predicate.SysUser

StatusIn applies the In predicate on the "status" field.

func StatusLT

func StatusLT(v int16) predicate.SysUser

StatusLT applies the LT predicate on the "status" field.

func StatusLTE

func StatusLTE(v int16) predicate.SysUser

StatusLTE applies the LTE predicate on the "status" field.

func StatusNEQ

func StatusNEQ(v int16) predicate.SysUser

StatusNEQ applies the NEQ predicate on the "status" field.

func StatusNotIn

func StatusNotIn(vs ...int16) predicate.SysUser

StatusNotIn applies the NotIn predicate on the "status" field.

func UpdatedAt

func UpdatedAt(v time.Time) predicate.SysUser

UpdatedAt applies equality check predicate on the "updated_at" field. It's identical to UpdatedAtEQ.

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.SysUser

UpdatedAtEQ applies the EQ predicate on the "updated_at" field.

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.SysUser

UpdatedAtGT applies the GT predicate on the "updated_at" field.

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.SysUser

UpdatedAtGTE applies the GTE predicate on the "updated_at" field.

func UpdatedAtIn

func UpdatedAtIn(vs ...time.Time) predicate.SysUser

UpdatedAtIn applies the In predicate on the "updated_at" field.

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.SysUser

UpdatedAtLT applies the LT predicate on the "updated_at" field.

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.SysUser

UpdatedAtLTE applies the LTE predicate on the "updated_at" field.

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.SysUser

UpdatedAtNEQ applies the NEQ predicate on the "updated_at" field.

func UpdatedAtNotIn

func UpdatedAtNotIn(vs ...time.Time) predicate.SysUser

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" field.

func UserName

func UserName(v string) predicate.SysUser

UserName applies equality check predicate on the "user_name" field. It's identical to UserNameEQ.

func UserNameContains

func UserNameContains(v string) predicate.SysUser

UserNameContains applies the Contains predicate on the "user_name" field.

func UserNameContainsFold

func UserNameContainsFold(v string) predicate.SysUser

UserNameContainsFold applies the ContainsFold predicate on the "user_name" field.

func UserNameEQ

func UserNameEQ(v string) predicate.SysUser

UserNameEQ applies the EQ predicate on the "user_name" field.

func UserNameEqualFold

func UserNameEqualFold(v string) predicate.SysUser

UserNameEqualFold applies the EqualFold predicate on the "user_name" field.

func UserNameGT

func UserNameGT(v string) predicate.SysUser

UserNameGT applies the GT predicate on the "user_name" field.

func UserNameGTE

func UserNameGTE(v string) predicate.SysUser

UserNameGTE applies the GTE predicate on the "user_name" field.

func UserNameHasPrefix

func UserNameHasPrefix(v string) predicate.SysUser

UserNameHasPrefix applies the HasPrefix predicate on the "user_name" field.

func UserNameHasSuffix

func UserNameHasSuffix(v string) predicate.SysUser

UserNameHasSuffix applies the HasSuffix predicate on the "user_name" field.

func UserNameIn

func UserNameIn(vs ...string) predicate.SysUser

UserNameIn applies the In predicate on the "user_name" field.

func UserNameLT

func UserNameLT(v string) predicate.SysUser

UserNameLT applies the LT predicate on the "user_name" field.

func UserNameLTE

func UserNameLTE(v string) predicate.SysUser

UserNameLTE applies the LTE predicate on the "user_name" field.

func UserNameNEQ

func UserNameNEQ(v string) predicate.SysUser

UserNameNEQ applies the NEQ predicate on the "user_name" field.

func UserNameNotIn

func UserNameNotIn(vs ...string) predicate.SysUser

UserNameNotIn applies the NotIn predicate on the "user_name" field.

func ValidColumn

func ValidColumn(column string) bool

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

Types

This section is empty.

Jump to

Keyboard shortcuts

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