相关条件的统计
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

15 行
827 B

  1. package model
  2. type UserStatistics struct {
  3. Id int `json:"id" xorm:"not null pk autoincr INT(11)"`
  4. ImportFinTotal string `json:"import_fin_total" xorm:"comment('导入的累计收益') DECIMAL(30,4)"`
  5. FinTotal string `json:"fin_total" xorm:"comment('系统统计的累计收益') DECIMAL(30,4)"`
  6. Uid int `json:"uid" xorm:"default 0 index INT(11)"`
  7. Month string `json:"month" xorm:"default 0.0000 DECIMAL(30,4)"`
  8. LastMonth string `json:"last_month" xorm:"default 0.0000 DECIMAL(30,4)"`
  9. MonthChangeTime int `json:"month_change_time" xorm:"default 0 INT(11)"`
  10. WaitSettle string `json:"wait_settle" xorm:"default 0.0000 DECIMAL(30,4)"`
  11. Today string `json:"today" xorm:"DECIMAL(30,4)"`
  12. Yestday string `json:"yestday" xorm:"DECIMAL(30,4)"`
  13. }