2022-08-31 07:49:08 +00:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
|
|
|
|
|
|
|
package group
|
|
|
|
|
2024-03-28 11:42:01 +00:00
|
|
|
import (
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
)
|
|
|
|
|
2022-08-31 07:49:08 +00:00
|
|
|
const (
|
|
|
|
// Label holds the string label denoting the group type in the database.
|
|
|
|
Label = "group"
|
|
|
|
// 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"
|
2023-04-05 06:05:14 +00:00
|
|
|
// FieldPassword holds the string denoting the password field in the database.
|
|
|
|
FieldPassword = "password"
|
2022-08-31 07:49:08 +00:00
|
|
|
// EdgeUsers holds the string denoting the users edge name in mutations.
|
|
|
|
EdgeUsers = "users"
|
|
|
|
// Table holds the table name of the group in the database.
|
|
|
|
Table = "groups"
|
|
|
|
// UsersTable is the table that holds the users relation/edge.
|
|
|
|
UsersTable = "users"
|
|
|
|
// UsersInverseTable is the table name for the User entity.
|
|
|
|
// It exists in this package in order to avoid circular dependency with the "user" package.
|
|
|
|
UsersInverseTable = "users"
|
|
|
|
// UsersColumn is the table column denoting the users relation/edge.
|
|
|
|
UsersColumn = "group_users"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Columns holds all SQL columns for group fields.
|
|
|
|
var Columns = []string{
|
|
|
|
FieldID,
|
|
|
|
FieldName,
|
2023-04-05 06:05:14 +00:00
|
|
|
FieldPassword,
|
2022-08-31 07:49:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ValidColumn reports if the column name is valid (part of the table columns).
|
|
|
|
func ValidColumn(column string) bool {
|
|
|
|
for i := range Columns {
|
|
|
|
if column == Columns[i] {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2023-04-05 06:05:14 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
// PasswordValidator is a validator for the "password" field. It is called by the builders before save.
|
|
|
|
PasswordValidator func(string) error
|
|
|
|
)
|
2024-03-28 11:42:01 +00:00
|
|
|
|
|
|
|
// OrderOption defines the ordering options for the Group queries.
|
|
|
|
type OrderOption func(*sql.Selector)
|
|
|
|
|
|
|
|
// ByID orders the results by the id field.
|
|
|
|
func ByID(opts ...sql.OrderTermOption) OrderOption {
|
|
|
|
return sql.OrderByField(FieldID, opts...).ToFunc()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ByName orders the results by the name field.
|
|
|
|
func ByName(opts ...sql.OrderTermOption) OrderOption {
|
|
|
|
return sql.OrderByField(FieldName, opts...).ToFunc()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ByPassword orders the results by the password field.
|
|
|
|
func ByPassword(opts ...sql.OrderTermOption) OrderOption {
|
|
|
|
return sql.OrderByField(FieldPassword, opts...).ToFunc()
|
|
|
|
}
|
|
|
|
|
|
|
|
// ByUsersCount orders the results by users count.
|
|
|
|
func ByUsersCount(opts ...sql.OrderTermOption) OrderOption {
|
|
|
|
return func(s *sql.Selector) {
|
|
|
|
sqlgraph.OrderByNeighborsCount(s, newUsersStep(), opts...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ByUsers orders the results by users terms.
|
|
|
|
func ByUsers(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
|
|
|
|
return func(s *sql.Selector) {
|
|
|
|
sqlgraph.OrderByNeighborTerms(s, newUsersStep(), append([]sql.OrderTerm{term}, terms...)...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func newUsersStep() *sqlgraph.Step {
|
|
|
|
return sqlgraph.NewStep(
|
|
|
|
sqlgraph.From(Table, FieldID),
|
|
|
|
sqlgraph.To(UsersInverseTable, FieldID),
|
|
|
|
sqlgraph.Edge(sqlgraph.O2M, false, UsersTable, UsersColumn),
|
|
|
|
)
|
|
|
|
}
|