mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-03 23:33:37 +08:00
132 lines
4.6 KiB
Go
132 lines
4.6 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package admin
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the admin type in the database.
|
|
Label = "admin"
|
|
// FieldID holds the string denoting the id field in the database.
|
|
FieldID = "id"
|
|
// FieldUsername holds the string denoting the username field in the database.
|
|
FieldUsername = "username"
|
|
// FieldPassword holds the string denoting the password field in the database.
|
|
FieldPassword = "password"
|
|
// FieldStatus holds the string denoting the status field in the database.
|
|
FieldStatus = "status"
|
|
// FieldLastActiveAt holds the string denoting the last_active_at field in the database.
|
|
FieldLastActiveAt = "last_active_at"
|
|
// FieldCreatedAt holds the string denoting the created_at field in the database.
|
|
FieldCreatedAt = "created_at"
|
|
// FieldUpdatedAt holds the string denoting the updated_at field in the database.
|
|
FieldUpdatedAt = "updated_at"
|
|
// EdgeLoginHistories holds the string denoting the login_histories edge name in mutations.
|
|
EdgeLoginHistories = "login_histories"
|
|
// Table holds the table name of the admin in the database.
|
|
Table = "admins"
|
|
// LoginHistoriesTable is the table that holds the login_histories relation/edge.
|
|
LoginHistoriesTable = "admin_login_histories"
|
|
// LoginHistoriesInverseTable is the table name for the AdminLoginHistory entity.
|
|
// It exists in this package in order to avoid circular dependency with the "adminloginhistory" package.
|
|
LoginHistoriesInverseTable = "admin_login_histories"
|
|
// LoginHistoriesColumn is the table column denoting the login_histories relation/edge.
|
|
LoginHistoriesColumn = "admin_id"
|
|
)
|
|
|
|
// Columns holds all SQL columns for admin fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldUsername,
|
|
FieldPassword,
|
|
FieldStatus,
|
|
FieldLastActiveAt,
|
|
FieldCreatedAt,
|
|
FieldUpdatedAt,
|
|
}
|
|
|
|
// 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 (
|
|
// DefaultLastActiveAt holds the default value on creation for the "last_active_at" field.
|
|
DefaultLastActiveAt func() time.Time
|
|
// 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
|
|
)
|
|
|
|
// OrderOption defines the ordering options for the Admin 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()
|
|
}
|
|
|
|
// ByUsername orders the results by the username field.
|
|
func ByUsername(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldUsername, opts...).ToFunc()
|
|
}
|
|
|
|
// ByPassword orders the results by the password field.
|
|
func ByPassword(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldPassword, opts...).ToFunc()
|
|
}
|
|
|
|
// ByStatus orders the results by the status field.
|
|
func ByStatus(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldStatus, opts...).ToFunc()
|
|
}
|
|
|
|
// ByLastActiveAt orders the results by the last_active_at field.
|
|
func ByLastActiveAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldLastActiveAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByCreatedAt orders the results by the created_at field.
|
|
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByUpdatedAt orders the results by the updated_at field.
|
|
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByLoginHistoriesCount orders the results by login_histories count.
|
|
func ByLoginHistoriesCount(opts ...sql.OrderTermOption) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborsCount(s, newLoginHistoriesStep(), opts...)
|
|
}
|
|
}
|
|
|
|
// ByLoginHistories orders the results by login_histories terms.
|
|
func ByLoginHistories(term sql.OrderTerm, terms ...sql.OrderTerm) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborTerms(s, newLoginHistoriesStep(), append([]sql.OrderTerm{term}, terms...)...)
|
|
}
|
|
}
|
|
func newLoginHistoriesStep() *sqlgraph.Step {
|
|
return sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(LoginHistoriesInverseTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.O2M, false, LoginHistoriesTable, LoginHistoriesColumn),
|
|
)
|
|
}
|