// Code generated by ent, DO NOT EDIT. package ent import ( "epic-ent/internal/ent/epicgvgattackteams" "fmt" "strings" "time" "entgo.io/ent" "entgo.io/ent/dialect/sql" ) // EpicGvgAttackTeams is the model entity for the EpicGvgAttackTeams schema. type EpicGvgAttackTeams struct { config `json:"-"` // ID of the ent. ID int64 `json:"id,omitempty"` // AttackHeroes holds the value of the "attack_heroes" field. AttackHeroes string `json:"attack_heroes,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 bool `json:"deleted,omitempty"` selectValues sql.SelectValues } // scanValues returns the types for scanning values from sql.Rows. func (*EpicGvgAttackTeams) scanValues(columns []string) ([]any, error) { values := make([]any, len(columns)) for i := range columns { switch columns[i] { case epicgvgattackteams.FieldDeleted: values[i] = new(sql.NullBool) case epicgvgattackteams.FieldID: values[i] = new(sql.NullInt64) case epicgvgattackteams.FieldAttackHeroes, epicgvgattackteams.FieldCreator, epicgvgattackteams.FieldUpdater: values[i] = new(sql.NullString) case epicgvgattackteams.FieldCreateTime, epicgvgattackteams.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 EpicGvgAttackTeams fields. func (_m *EpicGvgAttackTeams) 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 epicgvgattackteams.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 epicgvgattackteams.FieldAttackHeroes: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field attack_heroes", values[i]) } else if value.Valid { _m.AttackHeroes = value.String } case epicgvgattackteams.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 epicgvgattackteams.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 epicgvgattackteams.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 epicgvgattackteams.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 epicgvgattackteams.FieldDeleted: if value, ok := values[i].(*sql.NullBool); !ok { return fmt.Errorf("unexpected type %T for field deleted", values[i]) } else if value.Valid { _m.Deleted = value.Bool } default: _m.selectValues.Set(columns[i], values[i]) } } return nil } // Value returns the ent.Value that was dynamically selected and assigned to the EpicGvgAttackTeams. // This includes values selected through modifiers, order, etc. func (_m *EpicGvgAttackTeams) Value(name string) (ent.Value, error) { return _m.selectValues.Get(name) } // Update returns a builder for updating this EpicGvgAttackTeams. // Note that you need to call EpicGvgAttackTeams.Unwrap() before calling this method if this EpicGvgAttackTeams // was returned from a transaction, and the transaction was committed or rolled back. func (_m *EpicGvgAttackTeams) Update() *EpicGvgAttackTeamsUpdateOne { return NewEpicGvgAttackTeamsClient(_m.config).UpdateOne(_m) } // Unwrap unwraps the EpicGvgAttackTeams 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 *EpicGvgAttackTeams) Unwrap() *EpicGvgAttackTeams { _tx, ok := _m.config.driver.(*txDriver) if !ok { panic("ent: EpicGvgAttackTeams is not a transactional entity") } _m.config.driver = _tx.drv return _m } // String implements the fmt.Stringer. func (_m *EpicGvgAttackTeams) String() string { var builder strings.Builder builder.WriteString("EpicGvgAttackTeams(") builder.WriteString(fmt.Sprintf("id=%v, ", _m.ID)) builder.WriteString("attack_heroes=") builder.WriteString(_m.AttackHeroes) 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.WriteByte(')') return builder.String() } // EpicGvgAttackTeamsSlice is a parsable slice of EpicGvgAttackTeams. type EpicGvgAttackTeamsSlice []*EpicGvgAttackTeams