fix: api descript

This commit is contained in:
wwweww
2026-02-28 05:33:16 +08:00
parent 5930fb0dde
commit d2f33b4b96
243 changed files with 37065 additions and 780 deletions
@@ -0,0 +1,164 @@
// Code generated by ent, DO NOT EDIT.
package models
import (
"fmt"
"juwan-backend/app/shop/rpc/internal/models/shopinvitations"
"strings"
"time"
"entgo.io/ent"
"entgo.io/ent/dialect/sql"
)
// ShopInvitations is the model entity for the ShopInvitations schema.
type ShopInvitations struct {
config `json:"-"`
// ID of the ent.
ID int64 `json:"id,omitempty"`
// ShopID holds the value of the "shop_id" field.
ShopID int64 `json:"shop_id,omitempty"`
// PlayerID holds the value of the "player_id" field.
PlayerID int64 `json:"player_id,omitempty"`
// Status holds the value of the "status" field.
Status string `json:"status,omitempty"`
// InvitedBy holds the value of the "invited_by" field.
InvitedBy int64 `json:"invited_by,omitempty"`
// CreatedAt holds the value of the "created_at" field.
CreatedAt time.Time `json:"created_at,omitempty"`
// RespondedAt holds the value of the "responded_at" field.
RespondedAt *time.Time `json:"responded_at,omitempty"`
selectValues sql.SelectValues
}
// scanValues returns the types for scanning values from sql.Rows.
func (*ShopInvitations) scanValues(columns []string) ([]any, error) {
values := make([]any, len(columns))
for i := range columns {
switch columns[i] {
case shopinvitations.FieldID, shopinvitations.FieldShopID, shopinvitations.FieldPlayerID, shopinvitations.FieldInvitedBy:
values[i] = new(sql.NullInt64)
case shopinvitations.FieldStatus:
values[i] = new(sql.NullString)
case shopinvitations.FieldCreatedAt, shopinvitations.FieldRespondedAt:
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 ShopInvitations fields.
func (_m *ShopInvitations) 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 shopinvitations.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 shopinvitations.FieldShopID:
if value, ok := values[i].(*sql.NullInt64); !ok {
return fmt.Errorf("unexpected type %T for field shop_id", values[i])
} else if value.Valid {
_m.ShopID = value.Int64
}
case shopinvitations.FieldPlayerID:
if value, ok := values[i].(*sql.NullInt64); !ok {
return fmt.Errorf("unexpected type %T for field player_id", values[i])
} else if value.Valid {
_m.PlayerID = value.Int64
}
case shopinvitations.FieldStatus:
if value, ok := values[i].(*sql.NullString); !ok {
return fmt.Errorf("unexpected type %T for field status", values[i])
} else if value.Valid {
_m.Status = value.String
}
case shopinvitations.FieldInvitedBy:
if value, ok := values[i].(*sql.NullInt64); !ok {
return fmt.Errorf("unexpected type %T for field invited_by", values[i])
} else if value.Valid {
_m.InvitedBy = value.Int64
}
case shopinvitations.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
}
case shopinvitations.FieldRespondedAt:
if value, ok := values[i].(*sql.NullTime); !ok {
return fmt.Errorf("unexpected type %T for field responded_at", values[i])
} else if value.Valid {
_m.RespondedAt = new(time.Time)
*_m.RespondedAt = 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 ShopInvitations.
// This includes values selected through modifiers, order, etc.
func (_m *ShopInvitations) Value(name string) (ent.Value, error) {
return _m.selectValues.Get(name)
}
// Update returns a builder for updating this ShopInvitations.
// Note that you need to call ShopInvitations.Unwrap() before calling this method if this ShopInvitations
// was returned from a transaction, and the transaction was committed or rolled back.
func (_m *ShopInvitations) Update() *ShopInvitationsUpdateOne {
return NewShopInvitationsClient(_m.config).UpdateOne(_m)
}
// Unwrap unwraps the ShopInvitations 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 *ShopInvitations) Unwrap() *ShopInvitations {
_tx, ok := _m.config.driver.(*txDriver)
if !ok {
panic("models: ShopInvitations is not a transactional entity")
}
_m.config.driver = _tx.drv
return _m
}
// String implements the fmt.Stringer.
func (_m *ShopInvitations) String() string {
var builder strings.Builder
builder.WriteString("ShopInvitations(")
builder.WriteString(fmt.Sprintf("id=%v, ", _m.ID))
builder.WriteString("shop_id=")
builder.WriteString(fmt.Sprintf("%v", _m.ShopID))
builder.WriteString(", ")
builder.WriteString("player_id=")
builder.WriteString(fmt.Sprintf("%v", _m.PlayerID))
builder.WriteString(", ")
builder.WriteString("status=")
builder.WriteString(_m.Status)
builder.WriteString(", ")
builder.WriteString("invited_by=")
builder.WriteString(fmt.Sprintf("%v", _m.InvitedBy))
builder.WriteString(", ")
builder.WriteString("created_at=")
builder.WriteString(_m.CreatedAt.Format(time.ANSIC))
builder.WriteString(", ")
if v := _m.RespondedAt; v != nil {
builder.WriteString("responded_at=")
builder.WriteString(v.Format(time.ANSIC))
}
builder.WriteByte(')')
return builder.String()
}
// ShopInvitationsSlice is a parsable slice of ShopInvitations.
type ShopInvitationsSlice []*ShopInvitations