mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-02 06:43:23 +08:00
112 lines
3.8 KiB
Go
112 lines
3.8 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package modelprovidermodel
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the modelprovidermodel type in the database.
|
|
Label = "model_provider_model"
|
|
// 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"
|
|
// FieldProviderID holds the string denoting the provider_id field in the database.
|
|
FieldProviderID = "provider_id"
|
|
// 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"
|
|
// EdgeProvider holds the string denoting the provider edge name in mutations.
|
|
EdgeProvider = "provider"
|
|
// Table holds the table name of the modelprovidermodel in the database.
|
|
Table = "model_provider_models"
|
|
// ProviderTable is the table that holds the provider relation/edge.
|
|
ProviderTable = "model_provider_models"
|
|
// ProviderInverseTable is the table name for the ModelProvider entity.
|
|
// It exists in this package in order to avoid circular dependency with the "modelprovider" package.
|
|
ProviderInverseTable = "model_providers"
|
|
// ProviderColumn is the table column denoting the provider relation/edge.
|
|
ProviderColumn = "provider_id"
|
|
)
|
|
|
|
// Columns holds all SQL columns for modelprovidermodel fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldName,
|
|
FieldProviderID,
|
|
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 (
|
|
// NameValidator is a validator for the "name" field. It is called by the builders before save.
|
|
NameValidator func(string) error
|
|
// 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
|
|
// DefaultID holds the default value on creation for the "id" field.
|
|
DefaultID func() uuid.UUID
|
|
)
|
|
|
|
// OrderOption defines the ordering options for the ModelProviderModel 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()
|
|
}
|
|
|
|
// ByProviderID orders the results by the provider_id field.
|
|
func ByProviderID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldProviderID, 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()
|
|
}
|
|
|
|
// ByProviderField orders the results by provider field.
|
|
func ByProviderField(field string, opts ...sql.OrderTermOption) OrderOption {
|
|
return func(s *sql.Selector) {
|
|
sqlgraph.OrderByNeighborTerms(s, newProviderStep(), sql.OrderByField(field, opts...))
|
|
}
|
|
}
|
|
func newProviderStep() *sqlgraph.Step {
|
|
return sqlgraph.NewStep(
|
|
sqlgraph.From(Table, FieldID),
|
|
sqlgraph.To(ProviderInverseTable, FieldID),
|
|
sqlgraph.Edge(sqlgraph.M2O, true, ProviderTable, ProviderColumn),
|
|
)
|
|
}
|