Files
epic-ent/internal/ent/epici18nmappings.go

223 lines
7.9 KiB
Go

// Code generated by ent, DO NOT EDIT.
package ent
import (
"epic-ent/internal/ent/epici18nmappings"
"fmt"
"strings"
"time"
"entgo.io/ent"
"entgo.io/ent/dialect/sql"
)
// EpicI18NMappings is the model entity for the EpicI18NMappings schema.
type EpicI18NMappings struct {
config `json:"-"`
// ID of the ent.
ID int64 `json:"id,omitempty"`
// KeyName holds the value of the "key_name" field.
KeyName string `json:"key_name,omitempty"`
// Language holds the value of the "language" field.
Language string `json:"language,omitempty"`
// Value holds the value of the "value" field.
Value string `json:"value,omitempty"`
// Category holds the value of the "category" field.
Category string `json:"category,omitempty"`
// Status holds the value of the "status" field.
Status int `json:"status,omitempty"`
// Creator holds the value of the "creator" field.
Creator string `json:"creator,omitempty"`
// CreateTime holds the value of the "create_time" field.
CreateTime *time.Time `json:"create_time,omitempty"`
// Updater holds the value of the "updater" field.
Updater string `json:"updater,omitempty"`
// UpdateTime holds the value of the "update_time" field.
UpdateTime *time.Time `json:"update_time,omitempty"`
// Deleted holds the value of the "deleted" field.
Deleted int `json:"deleted,omitempty"`
// Code holds the value of the "code" field.
Code string `json:"code,omitempty"`
selectValues sql.SelectValues
}
// scanValues returns the types for scanning values from sql.Rows.
func (*EpicI18NMappings) scanValues(columns []string) ([]any, error) {
values := make([]any, len(columns))
for i := range columns {
switch columns[i] {
case epici18nmappings.FieldID, epici18nmappings.FieldStatus, epici18nmappings.FieldDeleted:
values[i] = new(sql.NullInt64)
case epici18nmappings.FieldKeyName, epici18nmappings.FieldLanguage, epici18nmappings.FieldValue, epici18nmappings.FieldCategory, epici18nmappings.FieldCreator, epici18nmappings.FieldUpdater, epici18nmappings.FieldCode:
values[i] = new(sql.NullString)
case epici18nmappings.FieldCreateTime, epici18nmappings.FieldUpdateTime:
values[i] = new(sql.NullTime)
default:
values[i] = new(sql.UnknownType)
}
}
return values, nil
}
// assignValues assigns the values that were returned from sql.Rows (after scanning)
// to the EpicI18NMappings fields.
func (_m *EpicI18NMappings) assignValues(columns []string, values []any) error {
if m, n := len(values), len(columns); m < n {
return fmt.Errorf("mismatch number of scan values: %d != %d", m, n)
}
for i := range columns {
switch columns[i] {
case epici18nmappings.FieldID:
value, ok := values[i].(*sql.NullInt64)
if !ok {
return fmt.Errorf("unexpected type %T for field id", value)
}
_m.ID = int64(value.Int64)
case epici18nmappings.FieldKeyName:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field key_name", values[i])
} else if value.Valid {
_m.KeyName = value.String
}
case epici18nmappings.FieldLanguage:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field language", values[i])
} else if value.Valid {
_m.Language = value.String
}
case epici18nmappings.FieldValue:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field value", values[i])
} else if value.Valid {
_m.Value = value.String
}
case epici18nmappings.FieldCategory:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field category", values[i])
} else if value.Valid {
_m.Category = value.String
}
case epici18nmappings.FieldStatus:
if value, ok := values[i].(*sql.NullInt64); !ok {
return fmt.Errorf("unexpected type %T for field status", values[i])
} else if value.Valid {
_m.Status = int(value.Int64)
}
case epici18nmappings.FieldCreator:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field creator", values[i])
} else if value.Valid {
_m.Creator = value.String
}
case epici18nmappings.FieldCreateTime:
if value, ok := values[i].(*sql.NullTime); !ok {
return fmt.Errorf("unexpected type %T for field create_time", values[i])
} else if value.Valid {
_m.CreateTime = new(time.Time)
*_m.CreateTime = value.Time
}
case epici18nmappings.FieldUpdater:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field updater", values[i])
} else if value.Valid {
_m.Updater = value.String
}
case epici18nmappings.FieldUpdateTime:
if value, ok := values[i].(*sql.NullTime); !ok {
return fmt.Errorf("unexpected type %T for field update_time", values[i])
} else if value.Valid {
_m.UpdateTime = new(time.Time)
*_m.UpdateTime = value.Time
}
case epici18nmappings.FieldDeleted:
if value, ok := values[i].(*sql.NullInt64); !ok {
return fmt.Errorf("unexpected type %T for field deleted", values[i])
} else if value.Valid {
_m.Deleted = int(value.Int64)
}
case epici18nmappings.FieldCode:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field code", values[i])
} else if value.Valid {
_m.Code = value.String
}
default:
_m.selectValues.Set(columns[i], values[i])
}
}
return nil
}
// GetValue returns the ent.Value that was dynamically selected and assigned to the EpicI18NMappings.
// This includes values selected through modifiers, order, etc.
func (_m *EpicI18NMappings) GetValue(name string) (ent.Value, error) {
return _m.selectValues.Get(name)
}
// Update returns a builder for updating this EpicI18NMappings.
// Note that you need to call EpicI18NMappings.Unwrap() before calling this method if this EpicI18NMappings
// was returned from a transaction, and the transaction was committed or rolled back.
func (_m *EpicI18NMappings) Update() *EpicI18NMappingsUpdateOne {
return NewEpicI18NMappingsClient(_m.config).UpdateOne(_m)
}
// Unwrap unwraps the EpicI18NMappings entity that was returned from a transaction after it was closed,
// so that all future queries will be executed through the driver which created the transaction.
func (_m *EpicI18NMappings) Unwrap() *EpicI18NMappings {
_tx, ok := _m.config.driver.(*txDriver)
if !ok {
panic("ent: EpicI18NMappings is not a transactional entity")
}
_m.config.driver = _tx.drv
return _m
}
// String implements the fmt.Stringer.
func (_m *EpicI18NMappings) String() string {
var builder strings.Builder
builder.WriteString("EpicI18NMappings(")
builder.WriteString(fmt.Sprintf("id=%v, ", _m.ID))
builder.WriteString("key_name=")
builder.WriteString(_m.KeyName)
builder.WriteString(", ")
builder.WriteString("language=")
builder.WriteString(_m.Language)
builder.WriteString(", ")
builder.WriteString("value=")
builder.WriteString(_m.Value)
builder.WriteString(", ")
builder.WriteString("category=")
builder.WriteString(_m.Category)
builder.WriteString(", ")
builder.WriteString("status=")
builder.WriteString(fmt.Sprintf("%v", _m.Status))
builder.WriteString(", ")
builder.WriteString("creator=")
builder.WriteString(_m.Creator)
builder.WriteString(", ")
if v := _m.CreateTime; v != nil {
builder.WriteString("create_time=")
builder.WriteString(v.Format(time.ANSIC))
}
builder.WriteString(", ")
builder.WriteString("updater=")
builder.WriteString(_m.Updater)
builder.WriteString(", ")
if v := _m.UpdateTime; v != nil {
builder.WriteString("update_time=")
builder.WriteString(v.Format(time.ANSIC))
}
builder.WriteString(", ")
builder.WriteString("deleted=")
builder.WriteString(fmt.Sprintf("%v", _m.Deleted))
builder.WriteString(", ")
builder.WriteString("code=")
builder.WriteString(_m.Code)
builder.WriteByte(')')
return builder.String()
}
// EpicI18NMappingsSlice is a parsable slice of EpicI18NMappings.
type EpicI18NMappingsSlice []*EpicI18NMappings