附近小店
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.
 
 
 

13 lines
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. }