You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package model
-
- type UserVirtualAmount struct {
- Id int64 `json:"id" xorm:"pk autoincr BIGINT(20)"`
- Uid int `json:"uid" xorm:"index INT(11)"`
- CoinId int `json:"coin_id" xorm:"INT(11)"`
- Amount string `json:"amount" xorm:"DECIMAL(16,6)"`
- }
|