69 lines
1.9 KiB
Go
69 lines
1.9 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package generalqueuestate
|
|
|
|
import (
|
|
"entgo.io/ent/dialect/sql"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the generalqueuestate type in the database.
|
|
Label = "general_queue_state"
|
|
// 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"
|
|
// FieldRunning holds the string denoting the running field in the database.
|
|
FieldRunning = "running"
|
|
// FieldUpdatedAt holds the string denoting the updated_at field in the database.
|
|
FieldUpdatedAt = "updated_at"
|
|
// Table holds the table name of the generalqueuestate in the database.
|
|
Table = "generalQueueState"
|
|
)
|
|
|
|
// Columns holds all SQL columns for generalqueuestate fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldName,
|
|
FieldRunning,
|
|
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 (
|
|
// DefaultRunning holds the default value on creation for the "running" field.
|
|
DefaultRunning bool
|
|
)
|
|
|
|
// OrderOption defines the ordering options for the GeneralQueueState 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()
|
|
}
|
|
|
|
// ByRunning orders the results by the running field.
|
|
func ByRunning(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldRunning, opts...).ToFunc()
|
|
}
|
|
|
|
// ByUpdatedAt orders the results by the updated_at field.
|
|
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
|
|
}
|