附近小店
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

13 righe
570 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. FreezeAmount string `json:"freeze_amount" xorm:"DECIMAL(16,6)"`
  8. WaitAmount string `json:"wait_amount" xorm:"DECIMAL(16,6)"`
  9. TeamFreezeAmount string `json:"team_freeze_amount" xorm:"DECIMAL(16,6)"`
  10. UseAmount string `json:"use_amount" xorm:"DECIMAL(16,6)"`
  11. }