// Code generated by ent, DO NOT EDIT. package ent import ( "fmt" "strings" "time" "entgo.io/ent" "entgo.io/ent/dialect/sql" "git.dcentral.systems/toolz/goplt/internal/ent/role" ) // Role is the model entity for the Role schema. type Role struct { config `json:"-"` // ID of the ent. ID string `json:"id,omitempty"` // Name holds the value of the "name" field. Name string `json:"name,omitempty"` // Description holds the value of the "description" field. Description string `json:"description,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 RoleQuery when eager-loading is set. Edges RoleEdges `json:"edges"` selectValues sql.SelectValues } // RoleEdges holds the relations/edges for other nodes in the graph. type RoleEdges struct { // RolePermissions holds the value of the role_permissions edge. RolePermissions []*RolePermission `json:"role_permissions,omitempty"` // UserRoles holds the value of the user_roles edge. UserRoles []*UserRole `json:"user_roles,omitempty"` // loadedTypes holds the information for reporting if a // type was loaded (or requested) in eager-loading or not. loadedTypes [2]bool } // RolePermissionsOrErr returns the RolePermissions value or an error if the edge // was not loaded in eager-loading. func (e RoleEdges) RolePermissionsOrErr() ([]*RolePermission, error) { if e.loadedTypes[0] { return e.RolePermissions, nil } return nil, &NotLoadedError{edge: "role_permissions"} } // UserRolesOrErr returns the UserRoles value or an error if the edge // was not loaded in eager-loading. func (e RoleEdges) UserRolesOrErr() ([]*UserRole, error) { if e.loadedTypes[1] { return e.UserRoles, nil } return nil, &NotLoadedError{edge: "user_roles"} } // scanValues returns the types for scanning values from sql.Rows. func (*Role) scanValues(columns []string) ([]any, error) { values := make([]any, len(columns)) for i := range columns { switch columns[i] { case role.FieldID, role.FieldName, role.FieldDescription: values[i] = new(sql.NullString) case role.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 Role fields. func (_m *Role) 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 role.FieldID: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field id", values[i]) } else if value.Valid { _m.ID = value.String } case role.FieldName: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field name", values[i]) } else if value.Valid { _m.Name = value.String } case role.FieldDescription: if value, ok := values[i].(*sql.NullString); !ok { return fmt.Errorf("unexpected type %T for field description", values[i]) } else if value.Valid { _m.Description = value.String } case role.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 Role. // This includes values selected through modifiers, order, etc. func (_m *Role) Value(name string) (ent.Value, error) { return _m.selectValues.Get(name) } // QueryRolePermissions queries the "role_permissions" edge of the Role entity. func (_m *Role) QueryRolePermissions() *RolePermissionQuery { return NewRoleClient(_m.config).QueryRolePermissions(_m) } // QueryUserRoles queries the "user_roles" edge of the Role entity. func (_m *Role) QueryUserRoles() *UserRoleQuery { return NewRoleClient(_m.config).QueryUserRoles(_m) } // Update returns a builder for updating this Role. // Note that you need to call Role.Unwrap() before calling this method if this Role // was returned from a transaction, and the transaction was committed or rolled back. func (_m *Role) Update() *RoleUpdateOne { return NewRoleClient(_m.config).UpdateOne(_m) } // Unwrap unwraps the Role 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 *Role) Unwrap() *Role { _tx, ok := _m.config.driver.(*txDriver) if !ok { panic("ent: Role is not a transactional entity") } _m.config.driver = _tx.drv return _m } // String implements the fmt.Stringer. func (_m *Role) String() string { var builder strings.Builder builder.WriteString("Role(") builder.WriteString(fmt.Sprintf("id=%v, ", _m.ID)) builder.WriteString("name=") builder.WriteString(_m.Name) builder.WriteString(", ") builder.WriteString("description=") builder.WriteString(_m.Description) builder.WriteString(", ") builder.WriteString("created_at=") builder.WriteString(_m.CreatedAt.Format(time.ANSIC)) builder.WriteByte(')') return builder.String() } // Roles is a parsable slice of Role. type Roles []*Role