面包店
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.
 
 
 
 
 

9 line
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. }