互动
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.

16 lines
539 B

5 years ago
  1. package models
  2. import (
  3. "time"
  4. )
  5. //抽奖活动钱包历史
  6. type LotteryDrawWalletHistory struct {
  7. Id int64 `json:"id"`
  8. CustomerId int64 `json:"customer_id" description:"客户id"`
  9. Money float64 `json:"money" description:"金额[分正负]"`
  10. Mark string `json:"mark" description:"备注"`
  11. IsDelete bool `json:"is_delete" xorm:"default(0)"`
  12. CreatedAt time.Time `json:"-" xorm:"created" description:"创建时间"`
  13. UpdatedAt time.Time `json:"-" xorm:"updated" description:"更新时间"`
  14. }