附近小店
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

user_virtual_amount.go 570 B

il y a 2 mois
123456789101112
  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. }