mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-03 07:13:26 +08:00
136 lines
4.4 KiB
Go
136 lines
4.4 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package role
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the role type in the database.
|
|
Label = "role"
|
|
// 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"
|
|
// FieldDescription holds the string denoting the description field in the database.
|
|
FieldDescription = "description"
|
|
// FieldCreatedAt holds the string denoting the created_at field in the database.
|
|
FieldCreatedAt = "created_at"
|
|
// EdgeAdmins holds the string denoting the admins edge name in mutations.
|
|
EdgeAdmins = "admins"
|
|
// EdgeAdminRoles holds the string denoting the admin_roles edge name in mutations.
|
|
EdgeAdminRoles = "admin_roles"
|
|
// Table holds the table name of the role in the database.
|
|
Table = "roles"
|
|
// AdminsTable is the table that holds the admins relation/edge. The primary key declared below.
|
|
AdminsTable = "admin_roles"
|
|
// AdminsInverseTable is the table name for the Admin entity.
|
|
// It exists in this package in order to avoid circular dependency with the "admin" package.
|
|
AdminsInverseTable = "admins"
|
|
// AdminRolesTable is the table that holds the admin_roles relation/edge.
|
|
AdminRolesTable = "admin_roles"
|
|
// AdminRolesInverseTable is the table name for the AdminRole entity.
|
|
// It exists in this package in order to avoid circular dependency with the "adminrole" package.
|
|
AdminRolesInverseTable = "admin_roles"
|
|
// AdminRolesColumn is the table column denoting the admin_roles relation/edge.
|
|
AdminRolesColumn = "role_id"
|
|
)
|
|
|
|
// Columns holds all SQL columns for role fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldName,
|
|
FieldDescription,
|
|
FieldCreatedAt,
|
|
}
|
|
|
|
var (
|
|
// AdminsPrimaryKey and AdminsColumn2 are the table columns denoting the
|
|
// primary key for the admins relation (M2M).
|
|
AdminsPrimaryKey = []string{"role_id", "admin_id"}
|
|
)
|
|
|
|
// 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
|
|
}
|
|
|
|
var (
|
|
// DefaultCreatedAt holds the default value on creation for the "created_at" field.
|
|
DefaultCreatedAt func() time.Time
|
|
)
|
|
|
|
// OrderOption defines the ordering options for the Role 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()
|
|
}
|
|
|
|
// ByDescription orders the results by the description field.
|
|
func ByDescription(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldDescription, opts...).ToFunc()
|
|
}
|
|
|
|
// ByCreatedAt orders the results by the created_at field.
|
|
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByAdminsCount orders the results by admins count.
|
|
func ByAdminsCount(opts ...sql.OrderTermOption) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborsCount(s, newAdminsStep(), opts...)
|
|
}
|
|
}
|
|
|
|
// ByAdmins orders the results by admins terms.
|
|
func ByAdmins(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborTerms(s, newAdminsStep(), append([]sql.OrderTerm{term}, terms...)...)
|
|
}
|
|
}
|
|
|
|
// ByAdminRolesCount orders the results by admin_roles count.
|
|
func ByAdminRolesCount(opts ...sql.OrderTermOption) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborsCount(s, newAdminRolesStep(), opts...)
|
|
}
|
|
}
|
|
|
|
// ByAdminRoles orders the results by admin_roles terms.
|
|
func ByAdminRoles(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborTerms(s, newAdminRolesStep(), append([]sql.OrderTerm{term}, terms...)...)
|
|
}
|
|
}
|
|
func newAdminsStep() *sqlgraph.Step {
|
|
return sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(AdminsInverseTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2M, false, AdminsTable, AdminsPrimaryKey...),
|
|
)
|
|
}
|
|
func newAdminRolesStep() *sqlgraph.Step {
|
|
return sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(AdminRolesInverseTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.O2M, true, AdminRolesTable, AdminRolesColumn),
|
|
)
|
|
}
|