面包店
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

22 satır
1.3 KiB

  1. package model
  2. type AcquisitionRewardLog struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(10)"`
  4. Uid int `json:"uid" xorm:"not null default 0 INT(11)"`
  5. ToUid int `json:"to_uid" xorm:"not null default 0 comment('被邀请人uid') INT(11)"`
  6. Title string `json:"title" xorm:"not null comment('标题') VARCHAR(255)"`
  7. Source int `json:"source" xorm:"not null default 0 comment('1为直推奖励
  8. 2为间推奖励
  9. 3为额外奖励
  10. 4为榜单奖励
  11. 来源标识') TINYINT(4)"`
  12. SourceText string `json:"source_text" xorm:"not null default '' comment('来源text') VARCHAR(255)"`
  13. JobsTag int `json:"jobs_tag" xorm:"comment('任务标识,只有额外奖励有') TINYINT(1)"`
  14. Money string `json:"money" xorm:"not null default 0.00 comment('奖励金额') DECIMAL(10,2)"`
  15. CreatedAt int `json:"created_at" xorm:"not null comment('创建时间') INT(10)"`
  16. GivenAt int `json:"given_at" xorm:"comment('奖励发放时间') INT(10)"`
  17. State int `json:"state" xorm:"not null default 1 comment('发放状态 0未发放 1已发放') TINYINT(1)"`
  18. IsFrozen int `json:"is_frozen" xorm:"not null default 0 comment('冻结状态 0未冻结 1已冻结') TINYINT(1)"`
  19. UpdatedAt int `json:"updated_at" xorm:"comment('更新时间') INT(10)"`
  20. }