面包店
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

9 行
254 B

  1. package model
  2. type UserVirtualAmount struct {
  3. Id int64 `json:"id" xorm:"pk autoincr BIGINT(20)"`
  4. Uid int `json:"uid" xorm:"index INT(11)"`
  5. CoinId int `json:"coin_id" xorm:"INT(11)"`
  6. Amount string `json:"amount" xorm:"DECIMAL(16,6)"`
  7. }