sysmenu

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 sysmenu type in the database.
	Label = "sys_menu"
	// 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"
	// FieldMemo holds the string denoting the memo field in the database.
	FieldMemo = "memo"
	// 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"
	// FieldName holds the string denoting the name field in the database.
	FieldName = "name"
	// FieldIcon holds the string denoting the icon field in the database.
	FieldIcon = "icon"
	// FieldRouter holds the string denoting the router field in the database.
	FieldRouter = "router"
	// FieldIsShow holds the string denoting the is_show field in the database.
	FieldIsShow = "is_show"
	// FieldParentID holds the string denoting the parent_id field in the database.
	FieldParentID = "pid"
	// FieldParentPath holds the string denoting the parent_path field in the database.
	FieldParentPath = "ppath"
	// Table holds the table name of the sysmenu in the database.
	Table = "sys_menus"
)

Variables

View Source
var (
	// DefaultIsDel holds the default value on creation for the "is_del" field.
	DefaultIsDel bool
	// DefaultMemo holds the default value on creation for the "memo" field.
	DefaultMemo string
	// MemoValidator is a validator for the "memo" field. It is called by the builders before save.
	MemoValidator func(string) error
	// 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
	// NameValidator is a validator for the "name" field. It is called by the builders before save.
	NameValidator func(string) error
	// IconValidator is a validator for the "icon" field. It is called by the builders before save.
	IconValidator func(string) error
	// RouterValidator is a validator for the "router" field. It is called by the builders before save.
	RouterValidator func(string) error
	// DefaultIsShow holds the default value on creation for the "is_show" field.
	DefaultIsShow bool
	// ParentIDValidator is a validator for the "parent_id" field. It is called by the builders before save.
	ParentIDValidator func(string) error
	// ParentPathValidator is a validator for the "parent_path" field. It is called by the builders before save.
	ParentPathValidator func(string) error
	// 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 sysmenu fields.

Functions

func And

func And(predicates ...predicate.SysMenu) predicate.SysMenu

And groups predicates with the AND operator between them.

func CreatedAt

func CreatedAt(v time.Time) predicate.SysMenu

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

func CreatedAtEQ

func CreatedAtEQ(v time.Time) predicate.SysMenu

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

func CreatedAtGT

func CreatedAtGT(v time.Time) predicate.SysMenu

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

func CreatedAtGTE

func CreatedAtGTE(v time.Time) predicate.SysMenu

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

func CreatedAtIn

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

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

func CreatedAtLT

func CreatedAtLT(v time.Time) predicate.SysMenu

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

func CreatedAtLTE

func CreatedAtLTE(v time.Time) predicate.SysMenu

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

func CreatedAtNEQ

func CreatedAtNEQ(v time.Time) predicate.SysMenu

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

func CreatedAtNotIn

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

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

func DeletedAt

func DeletedAt(v time.Time) predicate.SysMenu

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

func DeletedAtEQ

func DeletedAtEQ(v time.Time) predicate.SysMenu

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

func DeletedAtGT

func DeletedAtGT(v time.Time) predicate.SysMenu

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

func DeletedAtGTE

func DeletedAtGTE(v time.Time) predicate.SysMenu

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

func DeletedAtIn

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

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

func DeletedAtIsNil

func DeletedAtIsNil() predicate.SysMenu

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

func DeletedAtLT

func DeletedAtLT(v time.Time) predicate.SysMenu

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

func DeletedAtLTE

func DeletedAtLTE(v time.Time) predicate.SysMenu

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

func DeletedAtNEQ

func DeletedAtNEQ(v time.Time) predicate.SysMenu

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

func DeletedAtNotIn

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

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

func DeletedAtNotNil

func DeletedAtNotNil() predicate.SysMenu

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

func ID

func ID(id string) predicate.SysMenu

ID filters vertices based on their ID field.

func IDEQ

func IDEQ(id string) predicate.SysMenu

IDEQ applies the EQ predicate on the ID field.

func IDGT

func IDGT(id string) predicate.SysMenu

IDGT applies the GT predicate on the ID field.

func IDGTE

func IDGTE(id string) predicate.SysMenu

IDGTE applies the GTE predicate on the ID field.

func IDIn

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

IDIn applies the In predicate on the ID field.

func IDLT

func IDLT(id string) predicate.SysMenu

IDLT applies the LT predicate on the ID field.

func IDLTE

func IDLTE(id string) predicate.SysMenu

IDLTE applies the LTE predicate on the ID field.

func IDNEQ

func IDNEQ(id string) predicate.SysMenu

IDNEQ applies the NEQ predicate on the ID field.

func IDNotIn

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

IDNotIn applies the NotIn predicate on the ID field.

func Icon

func Icon(v string) predicate.SysMenu

Icon applies equality check predicate on the "icon" field. It's identical to IconEQ.

func IconContains

func IconContains(v string) predicate.SysMenu

IconContains applies the Contains predicate on the "icon" field.

func IconContainsFold

func IconContainsFold(v string) predicate.SysMenu

IconContainsFold applies the ContainsFold predicate on the "icon" field.

func IconEQ

func IconEQ(v string) predicate.SysMenu

IconEQ applies the EQ predicate on the "icon" field.

func IconEqualFold

func IconEqualFold(v string) predicate.SysMenu

IconEqualFold applies the EqualFold predicate on the "icon" field.

func IconGT

func IconGT(v string) predicate.SysMenu

IconGT applies the GT predicate on the "icon" field.

func IconGTE

func IconGTE(v string) predicate.SysMenu

IconGTE applies the GTE predicate on the "icon" field.

func IconHasPrefix

func IconHasPrefix(v string) predicate.SysMenu

IconHasPrefix applies the HasPrefix predicate on the "icon" field.

func IconHasSuffix

func IconHasSuffix(v string) predicate.SysMenu

IconHasSuffix applies the HasSuffix predicate on the "icon" field.

func IconIn

func IconIn(vs ...string) predicate.SysMenu

IconIn applies the In predicate on the "icon" field.

func IconLT

func IconLT(v string) predicate.SysMenu

IconLT applies the LT predicate on the "icon" field.

func IconLTE

func IconLTE(v string) predicate.SysMenu

IconLTE applies the LTE predicate on the "icon" field.

func IconNEQ

func IconNEQ(v string) predicate.SysMenu

IconNEQ applies the NEQ predicate on the "icon" field.

func IconNotIn

func IconNotIn(vs ...string) predicate.SysMenu

IconNotIn applies the NotIn predicate on the "icon" field.

func IsDel

func IsDel(v bool) predicate.SysMenu

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

func IsDelEQ

func IsDelEQ(v bool) predicate.SysMenu

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

func IsDelNEQ

func IsDelNEQ(v bool) predicate.SysMenu

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

func IsShow

func IsShow(v bool) predicate.SysMenu

IsShow applies equality check predicate on the "is_show" field. It's identical to IsShowEQ.

func IsShowEQ

func IsShowEQ(v bool) predicate.SysMenu

IsShowEQ applies the EQ predicate on the "is_show" field.

func IsShowNEQ

func IsShowNEQ(v bool) predicate.SysMenu

IsShowNEQ applies the NEQ predicate on the "is_show" field.

func Memo

func Memo(v string) predicate.SysMenu

Memo applies equality check predicate on the "memo" field. It's identical to MemoEQ.

func MemoContains

func MemoContains(v string) predicate.SysMenu

MemoContains applies the Contains predicate on the "memo" field.

func MemoContainsFold

func MemoContainsFold(v string) predicate.SysMenu

MemoContainsFold applies the ContainsFold predicate on the "memo" field.

func MemoEQ

func MemoEQ(v string) predicate.SysMenu

MemoEQ applies the EQ predicate on the "memo" field.

func MemoEqualFold

func MemoEqualFold(v string) predicate.SysMenu

MemoEqualFold applies the EqualFold predicate on the "memo" field.

func MemoGT

func MemoGT(v string) predicate.SysMenu

MemoGT applies the GT predicate on the "memo" field.

func MemoGTE

func MemoGTE(v string) predicate.SysMenu

MemoGTE applies the GTE predicate on the "memo" field.

func MemoHasPrefix

func MemoHasPrefix(v string) predicate.SysMenu

MemoHasPrefix applies the HasPrefix predicate on the "memo" field.

func MemoHasSuffix

func MemoHasSuffix(v string) predicate.SysMenu

MemoHasSuffix applies the HasSuffix predicate on the "memo" field.

func MemoIn

func MemoIn(vs ...string) predicate.SysMenu

MemoIn applies the In predicate on the "memo" field.

func MemoLT

func MemoLT(v string) predicate.SysMenu

MemoLT applies the LT predicate on the "memo" field.

func MemoLTE

func MemoLTE(v string) predicate.SysMenu

MemoLTE applies the LTE predicate on the "memo" field.

func MemoNEQ

func MemoNEQ(v string) predicate.SysMenu

MemoNEQ applies the NEQ predicate on the "memo" field.

func MemoNotIn

func MemoNotIn(vs ...string) predicate.SysMenu

MemoNotIn applies the NotIn predicate on the "memo" field.

func Name

func Name(v string) predicate.SysMenu

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

func NameContains

func NameContains(v string) predicate.SysMenu

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

func NameContainsFold

func NameContainsFold(v string) predicate.SysMenu

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

func NameEQ

func NameEQ(v string) predicate.SysMenu

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

func NameEqualFold

func NameEqualFold(v string) predicate.SysMenu

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

func NameGT

func NameGT(v string) predicate.SysMenu

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

func NameGTE

func NameGTE(v string) predicate.SysMenu

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

func NameHasPrefix

func NameHasPrefix(v string) predicate.SysMenu

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

func NameHasSuffix

func NameHasSuffix(v string) predicate.SysMenu

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

func NameIn

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

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

func NameLT

func NameLT(v string) predicate.SysMenu

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

func NameLTE

func NameLTE(v string) predicate.SysMenu

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

func NameNEQ

func NameNEQ(v string) predicate.SysMenu

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

func NameNotIn

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

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.SysMenu) predicate.SysMenu

Or groups predicates with the OR operator between them.

func ParentID

func ParentID(v string) predicate.SysMenu

ParentID applies equality check predicate on the "parent_id" field. It's identical to ParentIDEQ.

func ParentIDContains

func ParentIDContains(v string) predicate.SysMenu

ParentIDContains applies the Contains predicate on the "parent_id" field.

func ParentIDContainsFold

func ParentIDContainsFold(v string) predicate.SysMenu

ParentIDContainsFold applies the ContainsFold predicate on the "parent_id" field.

func ParentIDEQ

func ParentIDEQ(v string) predicate.SysMenu

ParentIDEQ applies the EQ predicate on the "parent_id" field.

func ParentIDEqualFold

func ParentIDEqualFold(v string) predicate.SysMenu

ParentIDEqualFold applies the EqualFold predicate on the "parent_id" field.

func ParentIDGT

func ParentIDGT(v string) predicate.SysMenu

ParentIDGT applies the GT predicate on the "parent_id" field.

func ParentIDGTE

func ParentIDGTE(v string) predicate.SysMenu

ParentIDGTE applies the GTE predicate on the "parent_id" field.

func ParentIDHasPrefix

func ParentIDHasPrefix(v string) predicate.SysMenu

ParentIDHasPrefix applies the HasPrefix predicate on the "parent_id" field.

func ParentIDHasSuffix

func ParentIDHasSuffix(v string) predicate.SysMenu

ParentIDHasSuffix applies the HasSuffix predicate on the "parent_id" field.

func ParentIDIn

func ParentIDIn(vs ...string) predicate.SysMenu

ParentIDIn applies the In predicate on the "parent_id" field.

func ParentIDIsNil

func ParentIDIsNil() predicate.SysMenu

ParentIDIsNil applies the IsNil predicate on the "parent_id" field.

func ParentIDLT

func ParentIDLT(v string) predicate.SysMenu

ParentIDLT applies the LT predicate on the "parent_id" field.

func ParentIDLTE

func ParentIDLTE(v string) predicate.SysMenu

ParentIDLTE applies the LTE predicate on the "parent_id" field.

func ParentIDNEQ

func ParentIDNEQ(v string) predicate.SysMenu

ParentIDNEQ applies the NEQ predicate on the "parent_id" field.

func ParentIDNotIn

func ParentIDNotIn(vs ...string) predicate.SysMenu

ParentIDNotIn applies the NotIn predicate on the "parent_id" field.

func ParentIDNotNil

func ParentIDNotNil() predicate.SysMenu

ParentIDNotNil applies the NotNil predicate on the "parent_id" field.

func ParentPath

func ParentPath(v string) predicate.SysMenu

ParentPath applies equality check predicate on the "parent_path" field. It's identical to ParentPathEQ.

func ParentPathContains

func ParentPathContains(v string) predicate.SysMenu

ParentPathContains applies the Contains predicate on the "parent_path" field.

func ParentPathContainsFold

func ParentPathContainsFold(v string) predicate.SysMenu

ParentPathContainsFold applies the ContainsFold predicate on the "parent_path" field.

func ParentPathEQ

func ParentPathEQ(v string) predicate.SysMenu

ParentPathEQ applies the EQ predicate on the "parent_path" field.

func ParentPathEqualFold

func ParentPathEqualFold(v string) predicate.SysMenu

ParentPathEqualFold applies the EqualFold predicate on the "parent_path" field.

func ParentPathGT

func ParentPathGT(v string) predicate.SysMenu

ParentPathGT applies the GT predicate on the "parent_path" field.

func ParentPathGTE

func ParentPathGTE(v string) predicate.SysMenu

ParentPathGTE applies the GTE predicate on the "parent_path" field.

func ParentPathHasPrefix

func ParentPathHasPrefix(v string) predicate.SysMenu

ParentPathHasPrefix applies the HasPrefix predicate on the "parent_path" field.

func ParentPathHasSuffix

func ParentPathHasSuffix(v string) predicate.SysMenu

ParentPathHasSuffix applies the HasSuffix predicate on the "parent_path" field.

func ParentPathIn

func ParentPathIn(vs ...string) predicate.SysMenu

ParentPathIn applies the In predicate on the "parent_path" field.

func ParentPathIsNil

func ParentPathIsNil() predicate.SysMenu

ParentPathIsNil applies the IsNil predicate on the "parent_path" field.

func ParentPathLT

func ParentPathLT(v string) predicate.SysMenu

ParentPathLT applies the LT predicate on the "parent_path" field.

func ParentPathLTE

func ParentPathLTE(v string) predicate.SysMenu

ParentPathLTE applies the LTE predicate on the "parent_path" field.

func ParentPathNEQ

func ParentPathNEQ(v string) predicate.SysMenu

ParentPathNEQ applies the NEQ predicate on the "parent_path" field.

func ParentPathNotIn

func ParentPathNotIn(vs ...string) predicate.SysMenu

ParentPathNotIn applies the NotIn predicate on the "parent_path" field.

func ParentPathNotNil

func ParentPathNotNil() predicate.SysMenu

ParentPathNotNil applies the NotNil predicate on the "parent_path" field.

func Router

func Router(v string) predicate.SysMenu

Router applies equality check predicate on the "router" field. It's identical to RouterEQ.

func RouterContains

func RouterContains(v string) predicate.SysMenu

RouterContains applies the Contains predicate on the "router" field.

func RouterContainsFold

func RouterContainsFold(v string) predicate.SysMenu

RouterContainsFold applies the ContainsFold predicate on the "router" field.

func RouterEQ

func RouterEQ(v string) predicate.SysMenu

RouterEQ applies the EQ predicate on the "router" field.

func RouterEqualFold

func RouterEqualFold(v string) predicate.SysMenu

RouterEqualFold applies the EqualFold predicate on the "router" field.

func RouterGT

func RouterGT(v string) predicate.SysMenu

RouterGT applies the GT predicate on the "router" field.

func RouterGTE

func RouterGTE(v string) predicate.SysMenu

RouterGTE applies the GTE predicate on the "router" field.

func RouterHasPrefix

func RouterHasPrefix(v string) predicate.SysMenu

RouterHasPrefix applies the HasPrefix predicate on the "router" field.

func RouterHasSuffix

func RouterHasSuffix(v string) predicate.SysMenu

RouterHasSuffix applies the HasSuffix predicate on the "router" field.

func RouterIn

func RouterIn(vs ...string) predicate.SysMenu

RouterIn applies the In predicate on the "router" field.

func RouterLT

func RouterLT(v string) predicate.SysMenu

RouterLT applies the LT predicate on the "router" field.

func RouterLTE

func RouterLTE(v string) predicate.SysMenu

RouterLTE applies the LTE predicate on the "router" field.

func RouterNEQ

func RouterNEQ(v string) predicate.SysMenu

RouterNEQ applies the NEQ predicate on the "router" field.

func RouterNotIn

func RouterNotIn(vs ...string) predicate.SysMenu

RouterNotIn applies the NotIn predicate on the "router" field.

func Sort

func Sort(v int32) predicate.SysMenu

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

func SortEQ

func SortEQ(v int32) predicate.SysMenu

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

func SortGT

func SortGT(v int32) predicate.SysMenu

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

func SortGTE

func SortGTE(v int32) predicate.SysMenu

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

func SortIn

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

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

func SortLT

func SortLT(v int32) predicate.SysMenu

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

func SortLTE

func SortLTE(v int32) predicate.SysMenu

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

func SortNEQ

func SortNEQ(v int32) predicate.SysMenu

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

func SortNotIn

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

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

func Status

func Status(v int16) predicate.SysMenu

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

func StatusEQ

func StatusEQ(v int16) predicate.SysMenu

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

func StatusGT

func StatusGT(v int16) predicate.SysMenu

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

func StatusGTE

func StatusGTE(v int16) predicate.SysMenu

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

func StatusIn

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

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

func StatusLT

func StatusLT(v int16) predicate.SysMenu

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

func StatusLTE

func StatusLTE(v int16) predicate.SysMenu

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

func StatusNEQ

func StatusNEQ(v int16) predicate.SysMenu

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

func StatusNotIn

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

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

func UpdatedAt

func UpdatedAt(v time.Time) predicate.SysMenu

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

func UpdatedAtEQ

func UpdatedAtEQ(v time.Time) predicate.SysMenu

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

func UpdatedAtGT

func UpdatedAtGT(v time.Time) predicate.SysMenu

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

func UpdatedAtGTE

func UpdatedAtGTE(v time.Time) predicate.SysMenu

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

func UpdatedAtIn

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

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

func UpdatedAtLT

func UpdatedAtLT(v time.Time) predicate.SysMenu

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

func UpdatedAtLTE

func UpdatedAtLTE(v time.Time) predicate.SysMenu

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

func UpdatedAtNEQ

func UpdatedAtNEQ(v time.Time) predicate.SysMenu

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

func UpdatedAtNotIn

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

UpdatedAtNotIn applies the NotIn predicate on the "updated_at" 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