19cc7a778c
- Deleted old gRPC service definitions in `game_grpc.pb.go` and `public.go`. - Added new API server implementations for objectstory, player, and shop services. - Introduced configuration files for new APIs in `etc/*.yaml`. - Created main entry points for each service in `objectstory.go`, `player.go`, and `shop.go`. - Removed unused user update handler and user API files. - Added utility functions for context management and HTTP header parsing. - Introduced PostgreSQL backup configuration in `backup/postgreSql.yaml`.
40 lines
866 B
Go
40 lines
866 B
Go
package schema
|
|
|
|
import (
|
|
"entgo.io/ent"
|
|
"entgo.io/ent/dialect"
|
|
"entgo.io/ent/schema/field"
|
|
"github.com/shopspring/decimal"
|
|
)
|
|
|
|
var defalutBalance = decimal.RequireFromString("0.00")
|
|
|
|
// Wallet holds the schema definition for the Wallet entity.
|
|
type Wallet struct {
|
|
ent.Schema
|
|
}
|
|
|
|
// Fields of the Wallet.
|
|
func (Wallet) Fields() []ent.Field {
|
|
return []ent.Field{
|
|
field.Int64("user_id").Immutable().Unique(),
|
|
field.Other("balance", decimal.Decimal{}).
|
|
Default(defalutBalance).
|
|
SchemaType(map[string]string{
|
|
dialect.Postgres: "decimal(12,2)",
|
|
}),
|
|
field.Other("frozen_balance", decimal.Decimal{}).
|
|
Default(defalutBalance).
|
|
SchemaType(map[string]string{
|
|
dialect.Postgres: "decimal(12,2)",
|
|
}),
|
|
field.Int("version").Default(1),
|
|
field.Time("updated_at"),
|
|
}
|
|
}
|
|
|
|
// Edges of the Wallet.
|
|
func (Wallet) Edges() []ent.Edge {
|
|
return nil
|
|
}
|