相关条件的统计
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.

user_statistics.go 827 B

6 months ago
1234567891011121314
  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. }