You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

user_business_analysis.go 1.1 kB

12345678910111213141516171819202122232425
  1. package models
  2. import (
  3. "code.gitea.io/gitea/modules/timeutil"
  4. )
  5. type User_business_analysis struct {
  6. ID int64 `xorm:"pk"`
  7. countDate int64 `xorm:"pk"`
  8. codeMergeCount int `xorm:"NOT NULL DEFAULT 0"`
  9. commitCount int `xorm:"NOT NULL DEFAULT 0"`
  10. issueCount int `xorm:"NOT NULL DEFAULT 0"`
  11. commentCount int `xorm:"NOT NULL DEFAULT 0"`
  12. focusRepoCount int `xorm:"NOT NULL DEFAULT 0"`
  13. starRepoCount int `xorm:"NOT NULL DEFAULT 0"`
  14. watchedCount int `xorm:"NOT NULL DEFAULT 0"`
  15. giteaAgeMonth int `xorm:"NOT NULL DEFAULT 0"`
  16. commitCodeSize int `xorm:"NOT NULL DEFAULT 0"`
  17. commitDatasetSize int `xorm:"NOT NULL DEFAULT 0"`
  18. commitModelCount int `xorm:"NOT NULL DEFAULT 0"`
  19. solveIssueCount int `xorm:"NOT NULL DEFAULT 0"`
  20. encyclopediasCount int `xorm:"NOT NULL DEFAULT 0"`
  21. registDate timeutil.TimeStamp `xorm:"NOT NULL"`
  22. }