Merge branch 'dev' into dev-runtime

This commit is contained in:
alphago9
2026-03-30 20:14:29 +08:00
27 changed files with 532 additions and 318 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ const (
)
type WalletAddress struct {
Token string `gorm:"column:token;uniqueIndex:wallet_address_token_uindex" json:"token"`
Status int64 `gorm:"column:status;default:1" json:"status"`
Address string `gorm:"column:address;uniqueIndex:wallet_address_address_uindex" json:"address"`
Status int64 `gorm:"column:status;default:1" json:"status"`
BaseModel
}