mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
Summary: Pull Request resolved: https://github.com/facebookincubator/ent/pull/161 Reviewed By: alexsn Differential Revision: D18483166 fbshipit-source-id: 7273d284232c1bf515cc84326904b580fb70a0e3
142 lines
3.9 KiB
Go
142 lines
3.9 KiB
Go
// Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// Code generated (@generated) by entc, DO NOT EDIT.
|
|
|
|
package entv2
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/facebookincubator/ent/dialect/sql"
|
|
"github.com/facebookincubator/ent/entc/integration/migrate/entv2/user"
|
|
)
|
|
|
|
// User is the model entity for the User schema.
|
|
type User struct {
|
|
config `json:"-"`
|
|
// ID of the ent.
|
|
ID int `json:"id,omitempty"`
|
|
// Age holds the value of the "age" field.
|
|
Age int `json:"age,omitempty"`
|
|
// Name holds the value of the "name" field.
|
|
Name string `json:"name,omitempty"`
|
|
// Phone holds the value of the "phone" field.
|
|
Phone string `json:"phone,omitempty"`
|
|
// Buffer holds the value of the "buffer" field.
|
|
Buffer []byte `json:"buffer,omitempty"`
|
|
// Title holds the value of the "title" field.
|
|
Title string `json:"title,omitempty"`
|
|
// NewName holds the value of the "new_name" field.
|
|
NewName string `json:"new_name,omitempty"`
|
|
// Blob holds the value of the "blob" field.
|
|
Blob []byte `json:"blob,omitempty"`
|
|
// State holds the value of the "state" field.
|
|
State user.State `json:"state,omitempty"`
|
|
}
|
|
|
|
// FromRows scans the sql response data into User.
|
|
func (u *User) FromRows(rows *sql.Rows) error {
|
|
var scanu struct {
|
|
ID int
|
|
Age sql.NullInt64
|
|
Name sql.NullString
|
|
Phone sql.NullString
|
|
Buffer []byte
|
|
Title sql.NullString
|
|
NewName sql.NullString
|
|
Blob []byte
|
|
State sql.NullString
|
|
}
|
|
// the order here should be the same as in the `user.Columns`.
|
|
if err := rows.Scan(
|
|
&scanu.ID,
|
|
&scanu.Age,
|
|
&scanu.Name,
|
|
&scanu.Phone,
|
|
&scanu.Buffer,
|
|
&scanu.Title,
|
|
&scanu.NewName,
|
|
&scanu.Blob,
|
|
&scanu.State,
|
|
); err != nil {
|
|
return err
|
|
}
|
|
u.ID = scanu.ID
|
|
u.Age = int(scanu.Age.Int64)
|
|
u.Name = scanu.Name.String
|
|
u.Phone = scanu.Phone.String
|
|
u.Buffer = scanu.Buffer
|
|
u.Title = scanu.Title.String
|
|
u.NewName = scanu.NewName.String
|
|
u.Blob = scanu.Blob
|
|
u.State = user.State(scanu.State.String)
|
|
return nil
|
|
}
|
|
|
|
// Update returns a builder for updating this User.
|
|
// Note that, you need to call User.Unwrap() before calling this method, if this User
|
|
// was returned from a transaction, and the transaction was committed or rolled back.
|
|
func (u *User) Update() *UserUpdateOne {
|
|
return (&UserClient{u.config}).UpdateOne(u)
|
|
}
|
|
|
|
// Unwrap unwraps the entity that was returned from a transaction after it was closed,
|
|
// so that all next queries will be executed through the driver which created the transaction.
|
|
func (u *User) Unwrap() *User {
|
|
tx, ok := u.config.driver.(*txDriver)
|
|
if !ok {
|
|
panic("entv2: User is not a transactional entity")
|
|
}
|
|
u.config.driver = tx.drv
|
|
return u
|
|
}
|
|
|
|
// String implements the fmt.Stringer.
|
|
func (u *User) String() string {
|
|
var builder strings.Builder
|
|
builder.WriteString("User(")
|
|
builder.WriteString(fmt.Sprintf("id=%v", u.ID))
|
|
builder.WriteString(", age=")
|
|
builder.WriteString(fmt.Sprintf("%v", u.Age))
|
|
builder.WriteString(", name=")
|
|
builder.WriteString(u.Name)
|
|
builder.WriteString(", phone=")
|
|
builder.WriteString(u.Phone)
|
|
builder.WriteString(", buffer=")
|
|
builder.WriteString(fmt.Sprintf("%v", u.Buffer))
|
|
builder.WriteString(", title=")
|
|
builder.WriteString(u.Title)
|
|
builder.WriteString(", new_name=")
|
|
builder.WriteString(u.NewName)
|
|
builder.WriteString(", blob=")
|
|
builder.WriteString(fmt.Sprintf("%v", u.Blob))
|
|
builder.WriteString(", state=")
|
|
builder.WriteString(fmt.Sprintf("%v", u.State))
|
|
builder.WriteByte(')')
|
|
return builder.String()
|
|
}
|
|
|
|
// Users is a parsable slice of User.
|
|
type Users []*User
|
|
|
|
// FromRows scans the sql response data into Users.
|
|
func (u *Users) FromRows(rows *sql.Rows) error {
|
|
for rows.Next() {
|
|
scanu := &User{}
|
|
if err := scanu.FromRows(rows); err != nil {
|
|
return err
|
|
}
|
|
*u = append(*u, scanu)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (u Users) config(cfg config) {
|
|
for _i := range u {
|
|
u[_i].config = cfg
|
|
}
|
|
}
|