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)"` }