141 lines
4.4 KiB
Go
141 lines
4.4 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package models
|
|
|
|
import (
|
|
"fmt"
|
|
"juwan-backend/app/wallet/rpc/internal/models/wallet"
|
|
"strings"
|
|
"time"
|
|
|
|
"entgo.io/ent"
|
|
"entgo.io/ent/dialect/sql"
|
|
"github.com/shopspring/decimal"
|
|
)
|
|
|
|
// Wallet is the model entity for the Wallet schema.
|
|
type Wallet struct {
|
|
config `json:"-"`
|
|
// ID of the ent.
|
|
ID int64 `json:"id,omitempty"`
|
|
// Balance holds the value of the "balance" field.
|
|
Balance decimal.Decimal `json:"balance,omitempty"`
|
|
// FrozenBalance holds the value of the "frozen_balance" field.
|
|
FrozenBalance decimal.Decimal `json:"frozen_balance,omitempty"`
|
|
// Version holds the value of the "version" field.
|
|
Version int `json:"version,omitempty"`
|
|
// UpdatedAt holds the value of the "updated_at" field.
|
|
UpdatedAt time.Time `json:"updated_at,omitempty"`
|
|
selectValues sql.SelectValues
|
|
}
|
|
|
|
// scanValues returns the types for scanning values from sql.Rows.
|
|
func (*Wallet) scanValues(columns []string) ([]any, error) {
|
|
values := make([]any, len(columns))
|
|
for i := range columns {
|
|
switch columns[i] {
|
|
case wallet.FieldBalance, wallet.FieldFrozenBalance:
|
|
values[i] = new(decimal.Decimal)
|
|
case wallet.FieldID, wallet.FieldVersion:
|
|
values[i] = new(sql.NullInt64)
|
|
case wallet.FieldUpdatedAt:
|
|
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 Wallet fields.
|
|
func (_m *Wallet) 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 wallet.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 wallet.FieldBalance:
|
|
if value, ok := values[i].(*decimal.Decimal); !ok {
|
|
return fmt.Errorf("unexpected type %T for field balance", values[i])
|
|
} else if value != nil {
|
|
_m.Balance = *value
|
|
}
|
|
case wallet.FieldFrozenBalance:
|
|
if value, ok := values[i].(*decimal.Decimal); !ok {
|
|
return fmt.Errorf("unexpected type %T for field frozen_balance", values[i])
|
|
} else if value != nil {
|
|
_m.FrozenBalance = *value
|
|
}
|
|
case wallet.FieldVersion:
|
|
if value, ok := values[i].(*sql.NullInt64); !ok {
|
|
return fmt.Errorf("unexpected type %T for field version", values[i])
|
|
} else if value.Valid {
|
|
_m.Version = int(value.Int64)
|
|
}
|
|
case wallet.FieldUpdatedAt:
|
|
if value, ok := values[i].(*sql.NullTime); !ok {
|
|
return fmt.Errorf("unexpected type %T for field updated_at", values[i])
|
|
} else if value.Valid {
|
|
_m.UpdatedAt = 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 Wallet.
|
|
// This includes values selected through modifiers, order, etc.
|
|
func (_m *Wallet) Value(name string) (ent.Value, error) {
|
|
return _m.selectValues.Get(name)
|
|
}
|
|
|
|
// Update returns a builder for updating this Wallet.
|
|
// Note that you need to call Wallet.Unwrap() before calling this method if this Wallet
|
|
// was returned from a transaction, and the transaction was committed or rolled back.
|
|
func (_m *Wallet) Update() *WalletUpdateOne {
|
|
return NewWalletClient(_m.config).UpdateOne(_m)
|
|
}
|
|
|
|
// Unwrap unwraps the Wallet 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 *Wallet) Unwrap() *Wallet {
|
|
_tx, ok := _m.config.driver.(*txDriver)
|
|
if !ok {
|
|
panic("models: Wallet is not a transactional entity")
|
|
}
|
|
_m.config.driver = _tx.drv
|
|
return _m
|
|
}
|
|
|
|
// String implements the fmt.Stringer.
|
|
func (_m *Wallet) String() string {
|
|
var builder strings.Builder
|
|
builder.WriteString("Wallet(")
|
|
builder.WriteString(fmt.Sprintf("id=%v, ", _m.ID))
|
|
builder.WriteString("balance=")
|
|
builder.WriteString(fmt.Sprintf("%v", _m.Balance))
|
|
builder.WriteString(", ")
|
|
builder.WriteString("frozen_balance=")
|
|
builder.WriteString(fmt.Sprintf("%v", _m.FrozenBalance))
|
|
builder.WriteString(", ")
|
|
builder.WriteString("version=")
|
|
builder.WriteString(fmt.Sprintf("%v", _m.Version))
|
|
builder.WriteString(", ")
|
|
builder.WriteString("updated_at=")
|
|
builder.WriteString(_m.UpdatedAt.Format(time.ANSIC))
|
|
builder.WriteByte(')')
|
|
return builder.String()
|
|
}
|
|
|
|
// Wallets is a parsable slice of Wallet.
|
|
type Wallets []*Wallet
|