// Code generated by ent, DO NOT EDIT. package ent import ( "fmt" "strings" "time" "entgo.io/ent" "entgo.io/ent/dialect/sql" "github.com/Wei-Shaw/sub2api/ent/group" "github.com/Wei-Shaw/sub2api/ent/user" "github.com/Wei-Shaw/sub2api/ent/userallowedgroup" ) // UserAllowedGroup is the model entity for the UserAllowedGroup schema. type UserAllowedGroup struct { config `json:"-"` // UserID holds the value of the "user_id" field. UserID int64 `json:"user_id,omitempty"` // GroupID holds the value of the "group_id" field. GroupID int64 `json:"group_id,omitempty"` // CreatedAt holds the value of the "created_at" field. CreatedAt time.Time `json:"created_at,omitempty"` // Edges holds the relations/edges for other nodes in the graph. // The values are being populated by the UserAllowedGroupQuery when eager-loading is set. Edges UserAllowedGroupEdges `json:"edges"` selectValues sql.SelectValues } // UserAllowedGroupEdges holds the relations/edges for other nodes in the graph. type UserAllowedGroupEdges struct { // User holds the value of the user edge. User *User `json:"user,omitempty"` // Group holds the value of the group edge. Group *Group `json:"group,omitempty"` // loadedTypes holds the information for reporting if a // type was loaded (or requested) in eager-loading or not. loadedTypes [2]bool } // UserOrErr returns the User value or an error if the edge // was not loaded in eager-loading, or loaded but was not found. func (e UserAllowedGroupEdges) UserOrErr() (*User, error) { if e.User != nil { return e.User, nil } else if e.loadedTypes[0] { return nil, &NotFoundError{label: user.Label} } return nil, &NotLoadedError{edge: "user"} } // GroupOrErr returns the Group value or an error if the edge // was not loaded in eager-loading, or loaded but was not found. func (e UserAllowedGroupEdges) GroupOrErr() (*Group, error) { if e.Group != nil { return e.Group, nil } else if e.loadedTypes[1] { return nil, &NotFoundError{label: group.Label} } return nil, &NotLoadedError{edge: "group"} } // scanValues returns the types for scanning values from sql.Rows. func (*UserAllowedGroup) scanValues(columns []string) ([]any, error) { values := make([]any, len(columns)) for i := range columns { switch columns[i] { case userallowedgroup.FieldUserID, userallowedgroup.FieldGroupID: values[i] = new(sql.NullInt64) case userallowedgroup.FieldCreatedAt: 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 UserAllowedGroup fields. func (_m *UserAllowedGroup) 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 userallowedgroup.FieldUserID: if value, ok := values[i].(*sql.NullInt64); !ok { return fmt.Errorf("unexpected type %T for field user_id", values[i]) } else if value.Valid { _m.UserID = value.Int64 } case userallowedgroup.FieldGroupID: if value, ok := values[i].(*sql.NullInt64); !ok { return fmt.Errorf("unexpected type %T for field group_id", values[i]) } else if value.Valid { _m.GroupID = value.Int64 } case userallowedgroup.FieldCreatedAt: if value, ok := values[i].(*sql.NullTime); !ok { return fmt.Errorf("unexpected type %T for field created_at", values[i]) } else if value.Valid { _m.CreatedAt = 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 UserAllowedGroup. // This includes values selected through modifiers, order, etc. func (_m *UserAllowedGroup) Value(name string) (ent.Value, error) { return _m.selectValues.Get(name) } // QueryUser queries the "user" edge of the UserAllowedGroup entity. func (_m *UserAllowedGroup) QueryUser() *UserQuery { return NewUserAllowedGroupClient(_m.config).QueryUser(_m) } // QueryGroup queries the "group" edge of the UserAllowedGroup entity. func (_m *UserAllowedGroup) QueryGroup() *GroupQuery { return NewUserAllowedGroupClient(_m.config).QueryGroup(_m) } // Update returns a builder for updating this UserAllowedGroup. // Note that you need to call UserAllowedGroup.Unwrap() before calling this method if this UserAllowedGroup // was returned from a transaction, and the transaction was committed or rolled back. func (_m *UserAllowedGroup) Update() *UserAllowedGroupUpdateOne { return NewUserAllowedGroupClient(_m.config).UpdateOne(_m) } // Unwrap unwraps the UserAllowedGroup 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 *UserAllowedGroup) Unwrap() *UserAllowedGroup { _tx, ok := _m.config.driver.(*txDriver) if !ok { panic("ent: UserAllowedGroup is not a transactional entity") } _m.config.driver = _tx.drv return _m } // String implements the fmt.Stringer. func (_m *UserAllowedGroup) String() string { var builder strings.Builder builder.WriteString("UserAllowedGroup(") builder.WriteString("user_id=") builder.WriteString(fmt.Sprintf("%v", _m.UserID)) builder.WriteString(", ") builder.WriteString("group_id=") builder.WriteString(fmt.Sprintf("%v", _m.GroupID)) builder.WriteString(", ") builder.WriteString("created_at=") builder.WriteString(_m.CreatedAt.Format(time.ANSIC)) builder.WriteByte(')') return builder.String() } // UserAllowedGroups is a parsable slice of UserAllowedGroup. type UserAllowedGroups []*UserAllowedGroup