// Code generated by ent, DO NOT EDIT. package ent import ( "epic-ent/internal/ent/epicheroinfo" "fmt" "strings" "time" "entgo.io/ent" "entgo.io/ent/dialect/sql" ) // EpicHeroInfo is the model entity for the EpicHeroInfo schema. type EpicHeroInfo struct { config `json:"-"` // ID of the ent. ID int64 `json:"id,omitempty"` // HeroName holds the value of the "hero_name" field. HeroName string `json:"hero_name,omitempty"` // HeroCode holds the value of the "hero_code" field. HeroCode string `json:"hero_code,omitempty"` // HeroAttrLv60 holds the value of the "hero_attr_lv60" field. HeroAttrLv60 string `json:"hero_attr_lv60,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"` // NickName holds the value of the "nick_name" field. NickName string `json:"nick_name,omitempty"` // Rarity holds the value of the "rarity" field. Rarity string `json:"rarity,omitempty"` // Role holds the value of the "role" field. Role string `json:"role,omitempty"` // Zodiac holds the value of the "zodiac" field. Zodiac string `json:"zodiac,omitempty"` // HeadImgURL holds the value of the "head_img_url" field. HeadImgURL string `json:"head_img_url,omitempty"` // Attribute holds the value of the "attribute" field. Attribute string `json:"attribute,omitempty"` // Remark holds the value of the "remark" field. Remark string `json:"remark,omitempty"` // RawJSON holds the value of the "raw_json" field. RawJSON string `json:"raw_json,omitempty"` // ContentJSONSet holds the value of the "content_json_set" field. ContentJSONSet string `json:"content_json_set,omitempty"` // UpdateTimeSet holds the value of the "update_time_set" field. UpdateTimeSet *time.Time `json:"update_time_set,omitempty"` selectValues sql.SelectValues } // scanValues returns the types for scanning values from sql.Rows. func (*EpicHeroInfo) scanValues(columns []string) ([]any, error) { values := make([]any, len(columns)) for i := range columns { switch columns[i] { case epicheroinfo.FieldDeleted: values[i] = new(sql.NullBool) case epicheroinfo.FieldID: values[i] = new(sql.NullInt64) case epicheroinfo.FieldHeroName, epicheroinfo.FieldHeroCode, epicheroinfo.FieldHeroAttrLv60, epicheroinfo.FieldCreator, epicheroinfo.FieldUpdater, epicheroinfo.FieldNickName, epicheroinfo.FieldRarity, epicheroinfo.FieldRole, epicheroinfo.FieldZodiac, epicheroinfo.FieldHeadImgURL, epicheroinfo.FieldAttribute, epicheroinfo.FieldRemark, epicheroinfo.FieldRawJSON, epicheroinfo.FieldContentJSONSet: values[i] = new(sql.NullString) case epicheroinfo.FieldCreateTime, epicheroinfo.FieldUpdateTime, epicheroinfo.FieldUpdateTimeSet: 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 EpicHeroInfo fields. func (_m *EpicHeroInfo) 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 epicheroinfo.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 epicheroinfo.FieldHeroName: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field hero_name", values[i]) } else if value.Valid { _m.HeroName = value.String } case epicheroinfo.FieldHeroCode: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field hero_code", values[i]) } else if value.Valid { _m.HeroCode = value.String } case epicheroinfo.FieldHeroAttrLv60: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field hero_attr_lv60", values[i]) } else if value.Valid { _m.HeroAttrLv60 = value.String } case epicheroinfo.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 epicheroinfo.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 epicheroinfo.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 epicheroinfo.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 epicheroinfo.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 } case epicheroinfo.FieldNickName: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field nick_name", values[i]) } else if value.Valid { _m.NickName = value.String } case epicheroinfo.FieldRarity: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field rarity", values[i]) } else if value.Valid { _m.Rarity = value.String } case epicheroinfo.FieldRole: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field role", values[i]) } else if value.Valid { _m.Role = value.String } case epicheroinfo.FieldZodiac: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field zodiac", values[i]) } else if value.Valid { _m.Zodiac = value.String } case epicheroinfo.FieldHeadImgURL: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field head_img_url", values[i]) } else if value.Valid { _m.HeadImgURL = value.String } case epicheroinfo.FieldAttribute: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field attribute", values[i]) } else if value.Valid { _m.Attribute = value.String } case epicheroinfo.FieldRemark: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field remark", values[i]) } else if value.Valid { _m.Remark = value.String } case epicheroinfo.FieldRawJSON: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field raw_json", values[i]) } else if value.Valid { _m.RawJSON = value.String } case epicheroinfo.FieldContentJSONSet: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field content_json_set", values[i]) } else if value.Valid { _m.ContentJSONSet = value.String } case epicheroinfo.FieldUpdateTimeSet: if value, ok := values[i].(*sql.NullTime); !ok { return fmt.Errorf("unexpected type %T for field update_time_set", values[i]) } else if value.Valid { _m.UpdateTimeSet = new(time.Time) *_m.UpdateTimeSet = value.Time } default: _m.selectValues.Set(columns[i], values[i]) } } return nil } // Value returns the ent.Value that was dynamically selected and assigned to the EpicHeroInfo. // This includes values selected through modifiers, order, etc. func (_m *EpicHeroInfo) Value(name string) (ent.Value, error) { return _m.selectValues.Get(name) } // Update returns a builder for updating this EpicHeroInfo. // Note that you need to call EpicHeroInfo.Unwrap() before calling this method if this EpicHeroInfo // was returned from a transaction, and the transaction was committed or rolled back. func (_m *EpicHeroInfo) Update() *EpicHeroInfoUpdateOne { return NewEpicHeroInfoClient(_m.config).UpdateOne(_m) } // Unwrap unwraps the EpicHeroInfo 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 *EpicHeroInfo) Unwrap() *EpicHeroInfo { _tx, ok := _m.config.driver.(*txDriver) if !ok { panic("ent: EpicHeroInfo is not a transactional entity") } _m.config.driver = _tx.drv return _m } // String implements the fmt.Stringer. func (_m *EpicHeroInfo) String() string { var builder strings.Builder builder.WriteString("EpicHeroInfo(") builder.WriteString(fmt.Sprintf("id=%v, ", _m.ID)) builder.WriteString("hero_name=") builder.WriteString(_m.HeroName) builder.WriteString(", ") builder.WriteString("hero_code=") builder.WriteString(_m.HeroCode) builder.WriteString(", ") builder.WriteString("hero_attr_lv60=") builder.WriteString(_m.HeroAttrLv60) 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("nick_name=") builder.WriteString(_m.NickName) builder.WriteString(", ") builder.WriteString("rarity=") builder.WriteString(_m.Rarity) builder.WriteString(", ") builder.WriteString("role=") builder.WriteString(_m.Role) builder.WriteString(", ") builder.WriteString("zodiac=") builder.WriteString(_m.Zodiac) builder.WriteString(", ") builder.WriteString("head_img_url=") builder.WriteString(_m.HeadImgURL) builder.WriteString(", ") builder.WriteString("attribute=") builder.WriteString(_m.Attribute) builder.WriteString(", ") builder.WriteString("remark=") builder.WriteString(_m.Remark) builder.WriteString(", ") builder.WriteString("raw_json=") builder.WriteString(_m.RawJSON) builder.WriteString(", ") builder.WriteString("content_json_set=") builder.WriteString(_m.ContentJSONSet) builder.WriteString(", ") if v := _m.UpdateTimeSet; v != nil { builder.WriteString("update_time_set=") builder.WriteString(v.Format(time.ANSIC)) } builder.WriteByte(')') return builder.String() } // EpicHeroInfos is a parsable slice of EpicHeroInfo. type EpicHeroInfos []*EpicHeroInfo