🐛 Fix type name issue

This commit is contained in:
LittleSheep 2025-01-29 02:25:45 +08:00
parent 9c731eeac9
commit a311bddc25

View File

@ -9,7 +9,7 @@ import (
type Wallet struct {
cruda.BaseModel
Balance decimal.Decimal `json:"amount" sql:"type:decimal(30,2);"`
Balance decimal.Decimal `json:"balance" sql:"type:decimal(30,2);"`
Password string `json:"password"`
AccountID uint `json:"account_id"`
}