|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- package models
-
- import "code.gitea.io/gitea/modules/timeutil"
-
- type UserBusinessAnalysisCurrentYear struct {
- ID int64 `xorm:"pk"`
- CountDate int64 `xorm:"pk"`
- //action :ActionMergePullRequest // 11
- CodeMergeCount int `xorm:"NOT NULL DEFAULT 0"`
- //action :ActionCommitRepo
- CommitCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue // 10
- IssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //comment table current date
- CommentCount int `xorm:"NOT NULL DEFAULT 0"`
- //watch table current date
- FocusRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //star table current date
- StarRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //follow table
- WatchedCount int `xorm:"NOT NULL DEFAULT 0"`
- // user table
- GiteaAgeMonth int `xorm:"NOT NULL DEFAULT 0"`
- //
- CommitCodeSize int `xorm:"NOT NULL DEFAULT 0"`
- //attachement table
- CommitDatasetSize int `xorm:"NOT NULL DEFAULT 0"`
- //0
- CommitModelCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue, issueassignees
- SolveIssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //baike
- EncyclopediasCount int `xorm:"NOT NULL DEFAULT 0"`
- //user
- RegistDate timeutil.TimeStamp `xorm:"NOT NULL"`
- //repo
- CreateRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //login count, from elk
- LoginCount int `xorm:"NOT NULL DEFAULT 0"`
- //openi index
- OpenIIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- //user
- Email string `xorm:"NOT NULL"`
- //user
- Name string `xorm:"NOT NULL"`
- DataDate string `xorm:"NULL"`
-
- CloudBrainTaskNum int `xorm:"NOT NULL DEFAULT 0"`
- GpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuInferenceJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuBenchMarkJob int `xorm:"NOT NULL DEFAULT 0"`
- CloudBrainRunTime int `xorm:"NOT NULL DEFAULT 0"`
- CommitDatasetNum int `xorm:"NOT NULL DEFAULT 0"`
- UserIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- UserIndexPrimitive float64 `xorm:"NOT NULL DEFAULT 0"`
- UserLocation string `xorm:"NULL"`
-
- FocusOtherUser int `xorm:"NOT NULL DEFAULT 0"`
- CollectDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectedDataset int `xorm:"NOT NULL DEFAULT 0"`
- RecommendDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectImage int `xorm:"NOT NULL DEFAULT 0"`
- CollectedImage int `xorm:"NOT NULL DEFAULT 0"`
- RecommendImage int `xorm:"NOT NULL DEFAULT 0"`
-
- Phone string `xorm:"NULL"`
- }
-
- type UserBusinessAnalysisLast30Day struct {
- ID int64 `xorm:"pk"`
- CountDate int64 `xorm:"pk"`
- //action :ActionMergePullRequest // 11
- CodeMergeCount int `xorm:"NOT NULL DEFAULT 0"`
- //action :ActionCommitRepo
- CommitCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue // 10
- IssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //comment table current date
- CommentCount int `xorm:"NOT NULL DEFAULT 0"`
- //watch table current date
- FocusRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //star table current date
- StarRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //follow table
- WatchedCount int `xorm:"NOT NULL DEFAULT 0"`
- // user table
- GiteaAgeMonth int `xorm:"NOT NULL DEFAULT 0"`
- //
- CommitCodeSize int `xorm:"NOT NULL DEFAULT 0"`
- //attachement table
- CommitDatasetSize int `xorm:"NOT NULL DEFAULT 0"`
- //0
- CommitModelCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue, issueassignees
- SolveIssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //baike
- EncyclopediasCount int `xorm:"NOT NULL DEFAULT 0"`
- //user
- RegistDate timeutil.TimeStamp `xorm:"NOT NULL"`
- //repo
- CreateRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //login count, from elk
- LoginCount int `xorm:"NOT NULL DEFAULT 0"`
- //openi index
- OpenIIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- //user
- Email string `xorm:"NOT NULL"`
- //user
- Name string `xorm:"NOT NULL"`
- DataDate string `xorm:"NULL"`
-
- CloudBrainTaskNum int `xorm:"NOT NULL DEFAULT 0"`
- GpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuInferenceJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuBenchMarkJob int `xorm:"NOT NULL DEFAULT 0"`
- CloudBrainRunTime int `xorm:"NOT NULL DEFAULT 0"`
- CommitDatasetNum int `xorm:"NOT NULL DEFAULT 0"`
- UserIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- UserIndexPrimitive float64 `xorm:"NOT NULL DEFAULT 0"`
- UserLocation string `xorm:"NULL"`
-
- FocusOtherUser int `xorm:"NOT NULL DEFAULT 0"`
- CollectDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectedDataset int `xorm:"NOT NULL DEFAULT 0"`
- RecommendDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectImage int `xorm:"NOT NULL DEFAULT 0"`
- CollectedImage int `xorm:"NOT NULL DEFAULT 0"`
- RecommendImage int `xorm:"NOT NULL DEFAULT 0"`
-
- Phone string `xorm:"NULL"`
- }
-
- type UserBusinessAnalysisLastMonth struct {
- ID int64 `xorm:"pk"`
- CountDate int64 `xorm:"pk"`
- //action :ActionMergePullRequest // 11
- CodeMergeCount int `xorm:"NOT NULL DEFAULT 0"`
- //action :ActionCommitRepo
- CommitCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue // 10
- IssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //comment table current date
- CommentCount int `xorm:"NOT NULL DEFAULT 0"`
- //watch table current date
- FocusRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //star table current date
- StarRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //follow table
- WatchedCount int `xorm:"NOT NULL DEFAULT 0"`
- // user table
- GiteaAgeMonth int `xorm:"NOT NULL DEFAULT 0"`
- //
- CommitCodeSize int `xorm:"NOT NULL DEFAULT 0"`
- //attachement table
- CommitDatasetSize int `xorm:"NOT NULL DEFAULT 0"`
- //0
- CommitModelCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue, issueassignees
- SolveIssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //baike
- EncyclopediasCount int `xorm:"NOT NULL DEFAULT 0"`
- //user
- RegistDate timeutil.TimeStamp `xorm:"NOT NULL"`
- //repo
- CreateRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //login count, from elk
- LoginCount int `xorm:"NOT NULL DEFAULT 0"`
- //openi index
- OpenIIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- //user
- Email string `xorm:"NOT NULL"`
- //user
- Name string `xorm:"NOT NULL"`
- DataDate string `xorm:"NULL"`
-
- CloudBrainTaskNum int `xorm:"NOT NULL DEFAULT 0"`
- GpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuInferenceJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuBenchMarkJob int `xorm:"NOT NULL DEFAULT 0"`
- CloudBrainRunTime int `xorm:"NOT NULL DEFAULT 0"`
- CommitDatasetNum int `xorm:"NOT NULL DEFAULT 0"`
- UserIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- UserIndexPrimitive float64 `xorm:"NOT NULL DEFAULT 0"`
- UserLocation string `xorm:"NULL"`
-
- FocusOtherUser int `xorm:"NOT NULL DEFAULT 0"`
- CollectDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectedDataset int `xorm:"NOT NULL DEFAULT 0"`
- RecommendDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectImage int `xorm:"NOT NULL DEFAULT 0"`
- CollectedImage int `xorm:"NOT NULL DEFAULT 0"`
- RecommendImage int `xorm:"NOT NULL DEFAULT 0"`
-
- Phone string `xorm:"NULL"`
- }
-
- type UserBusinessAnalysisCurrentMonth struct {
- ID int64 `xorm:"pk"`
- CountDate int64 `xorm:"pk"`
- //action :ActionMergePullRequest // 11
- CodeMergeCount int `xorm:"NOT NULL DEFAULT 0"`
- //action :ActionCommitRepo
- CommitCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue // 10
- IssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //comment table current date
- CommentCount int `xorm:"NOT NULL DEFAULT 0"`
- //watch table current date
- FocusRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //star table current date
- StarRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //follow table
- WatchedCount int `xorm:"NOT NULL DEFAULT 0"`
- // user table
- GiteaAgeMonth int `xorm:"NOT NULL DEFAULT 0"`
- //
- CommitCodeSize int `xorm:"NOT NULL DEFAULT 0"`
- //attachement table
- CommitDatasetSize int `xorm:"NOT NULL DEFAULT 0"`
- //0
- CommitModelCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue, issueassignees
- SolveIssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //baike
- EncyclopediasCount int `xorm:"NOT NULL DEFAULT 0"`
- //user
- RegistDate timeutil.TimeStamp `xorm:"NOT NULL"`
- //repo
- CreateRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //login count, from elk
- LoginCount int `xorm:"NOT NULL DEFAULT 0"`
- //openi index
- OpenIIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- //user
- Email string `xorm:"NOT NULL"`
- //user
- Name string `xorm:"NOT NULL"`
- DataDate string `xorm:"NULL"`
-
- CloudBrainTaskNum int `xorm:"NOT NULL DEFAULT 0"`
- GpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuInferenceJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuBenchMarkJob int `xorm:"NOT NULL DEFAULT 0"`
- CloudBrainRunTime int `xorm:"NOT NULL DEFAULT 0"`
- CommitDatasetNum int `xorm:"NOT NULL DEFAULT 0"`
- UserIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- UserIndexPrimitive float64 `xorm:"NOT NULL DEFAULT 0"`
- UserLocation string `xorm:"NULL"`
-
- FocusOtherUser int `xorm:"NOT NULL DEFAULT 0"`
- CollectDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectedDataset int `xorm:"NOT NULL DEFAULT 0"`
- RecommendDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectImage int `xorm:"NOT NULL DEFAULT 0"`
- CollectedImage int `xorm:"NOT NULL DEFAULT 0"`
- RecommendImage int `xorm:"NOT NULL DEFAULT 0"`
-
- Phone string `xorm:"NULL"`
- }
-
- type UserBusinessAnalysisCurrentWeek struct {
- ID int64 `xorm:"pk"`
- CountDate int64 `xorm:"pk"`
- //action :ActionMergePullRequest // 11
- CodeMergeCount int `xorm:"NOT NULL DEFAULT 0"`
- //action :ActionCommitRepo
- CommitCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue // 10
- IssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //comment table current date
- CommentCount int `xorm:"NOT NULL DEFAULT 0"`
- //watch table current date
- FocusRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //star table current date
- StarRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //follow table
- WatchedCount int `xorm:"NOT NULL DEFAULT 0"`
- // user table
- GiteaAgeMonth int `xorm:"NOT NULL DEFAULT 0"`
- //
- CommitCodeSize int `xorm:"NOT NULL DEFAULT 0"`
- //attachement table
- CommitDatasetSize int `xorm:"NOT NULL DEFAULT 0"`
- //0
- CommitModelCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue, issueassignees
- SolveIssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //baike
- EncyclopediasCount int `xorm:"NOT NULL DEFAULT 0"`
- //user
- RegistDate timeutil.TimeStamp `xorm:"NOT NULL"`
- //repo
- CreateRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //login count, from elk
- LoginCount int `xorm:"NOT NULL DEFAULT 0"`
- //openi index
- OpenIIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- //user
- Email string `xorm:"NOT NULL"`
- //user
- Name string `xorm:"NOT NULL"`
- DataDate string `xorm:"NULL"`
-
- CloudBrainTaskNum int `xorm:"NOT NULL DEFAULT 0"`
- GpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuInferenceJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuBenchMarkJob int `xorm:"NOT NULL DEFAULT 0"`
- CloudBrainRunTime int `xorm:"NOT NULL DEFAULT 0"`
- CommitDatasetNum int `xorm:"NOT NULL DEFAULT 0"`
- UserIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- UserIndexPrimitive float64 `xorm:"NOT NULL DEFAULT 0"`
-
- UserLocation string `xorm:"NULL"`
-
- FocusOtherUser int `xorm:"NOT NULL DEFAULT 0"`
- CollectDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectedDataset int `xorm:"NOT NULL DEFAULT 0"`
- RecommendDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectImage int `xorm:"NOT NULL DEFAULT 0"`
- CollectedImage int `xorm:"NOT NULL DEFAULT 0"`
- RecommendImage int `xorm:"NOT NULL DEFAULT 0"`
-
- Phone string `xorm:"NULL"`
- }
-
- type UserBusinessAnalysisYesterday struct {
- ID int64 `xorm:"pk"`
- CountDate int64 `xorm:"pk"`
- //action :ActionMergePullRequest // 11
- CodeMergeCount int `xorm:"NOT NULL DEFAULT 0"`
- //action :ActionCommitRepo
- CommitCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue // 10
- IssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //comment table current date
- CommentCount int `xorm:"NOT NULL DEFAULT 0"`
- //watch table current date
- FocusRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //star table current date
- StarRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //follow table
- WatchedCount int `xorm:"NOT NULL DEFAULT 0"`
- // user table
- GiteaAgeMonth int `xorm:"NOT NULL DEFAULT 0"`
- //
- CommitCodeSize int `xorm:"NOT NULL DEFAULT 0"`
- //attachement table
- CommitDatasetSize int `xorm:"NOT NULL DEFAULT 0"`
- //0
- CommitModelCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue, issueassignees
- SolveIssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //baike
- EncyclopediasCount int `xorm:"NOT NULL DEFAULT 0"`
- //user
- RegistDate timeutil.TimeStamp `xorm:"NOT NULL"`
- //repo
- CreateRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //login count, from elk
- LoginCount int `xorm:"NOT NULL DEFAULT 0"`
- //openi index
- OpenIIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- //user
- Email string `xorm:"NOT NULL"`
- //user
- Name string `xorm:"NOT NULL"`
- DataDate string `xorm:"NULL"`
-
- CloudBrainTaskNum int `xorm:"NOT NULL DEFAULT 0"`
- GpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuInferenceJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuBenchMarkJob int `xorm:"NOT NULL DEFAULT 0"`
- CloudBrainRunTime int `xorm:"NOT NULL DEFAULT 0"`
- CommitDatasetNum int `xorm:"NOT NULL DEFAULT 0"`
- UserIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- UserIndexPrimitive float64 `xorm:"NOT NULL DEFAULT 0"`
-
- UserLocation string `xorm:"NULL"`
-
- FocusOtherUser int `xorm:"NOT NULL DEFAULT 0"`
- CollectDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectedDataset int `xorm:"NOT NULL DEFAULT 0"`
- RecommendDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectImage int `xorm:"NOT NULL DEFAULT 0"`
- CollectedImage int `xorm:"NOT NULL DEFAULT 0"`
- RecommendImage int `xorm:"NOT NULL DEFAULT 0"`
-
- Phone string `xorm:"NULL"`
- }
-
- type UserBusinessAnalysisLastWeek struct {
- ID int64 `xorm:"pk"`
- CountDate int64 `xorm:"pk"`
- //action :ActionMergePullRequest // 11
- CodeMergeCount int `xorm:"NOT NULL DEFAULT 0"`
- //action :ActionCommitRepo
- CommitCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue // 10
- IssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //comment table current date
- CommentCount int `xorm:"NOT NULL DEFAULT 0"`
- //watch table current date
- FocusRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //star table current date
- StarRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //follow table
- WatchedCount int `xorm:"NOT NULL DEFAULT 0"`
- // user table
- GiteaAgeMonth int `xorm:"NOT NULL DEFAULT 0"`
- //
- CommitCodeSize int `xorm:"NOT NULL DEFAULT 0"`
- //attachement table
- CommitDatasetSize int `xorm:"NOT NULL DEFAULT 0"`
- //0
- CommitModelCount int `xorm:"NOT NULL DEFAULT 0"`
- //issue, issueassignees
- SolveIssueCount int `xorm:"NOT NULL DEFAULT 0"`
- //baike
- EncyclopediasCount int `xorm:"NOT NULL DEFAULT 0"`
- //user
- RegistDate timeutil.TimeStamp `xorm:"NOT NULL"`
- //repo
- CreateRepoCount int `xorm:"NOT NULL DEFAULT 0"`
- //login count, from elk
- LoginCount int `xorm:"NOT NULL DEFAULT 0"`
- //openi index
- OpenIIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- //user
- Email string `xorm:"NOT NULL"`
- //user
- Name string `xorm:"NOT NULL"`
- DataDate string `xorm:"NULL"`
-
- CloudBrainTaskNum int `xorm:"NOT NULL DEFAULT 0"`
- GpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuDebugJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuTrainJob int `xorm:"NOT NULL DEFAULT 0"`
- NpuInferenceJob int `xorm:"NOT NULL DEFAULT 0"`
- GpuBenchMarkJob int `xorm:"NOT NULL DEFAULT 0"`
- CloudBrainRunTime int `xorm:"NOT NULL DEFAULT 0"`
- CommitDatasetNum int `xorm:"NOT NULL DEFAULT 0"`
- UserIndex float64 `xorm:"NOT NULL DEFAULT 0"`
- UserIndexPrimitive float64 `xorm:"NOT NULL DEFAULT 0"`
-
- UserLocation string `xorm:"NULL"`
-
- FocusOtherUser int `xorm:"NOT NULL DEFAULT 0"`
- CollectDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectedDataset int `xorm:"NOT NULL DEFAULT 0"`
- RecommendDataset int `xorm:"NOT NULL DEFAULT 0"`
- CollectImage int `xorm:"NOT NULL DEFAULT 0"`
- CollectedImage int `xorm:"NOT NULL DEFAULT 0"`
- RecommendImage int `xorm:"NOT NULL DEFAULT 0"`
-
- Phone string `xorm:"NULL"`
- }
-
- type UserAnalysisPara struct {
- Key string `xorm:"NOT NULL"`
- Value float64 `xorm:"NOT NULL DEFAULT 0"`
- }
-
- type UserMetrics struct {
- CountDate int64 `xorm:"pk"`
- ActivateRegistUser int `xorm:"NOT NULL DEFAULT 0"` //当天激活用户
- NotActivateRegistUser int `xorm:"NOT NULL DEFAULT 0"` //当天未激活用户
- ActivateIndex float64 `xorm:"NOT NULL DEFAULT 0"` //激活比率
- RegistActivityUser int `xorm:"NOT NULL DEFAULT 0"` //当天注册激活的人中,有贡献活动的人
- HasActivityUser int `xorm:"NOT NULL DEFAULT 0"` //当天有贡献活动的人
- TotalUser int `xorm:"NOT NULL DEFAULT 0"`
- TotalRegistUser int `xorm:"-"`
- TotalActivateRegistUser int `xorm:"NOT NULL DEFAULT 0"`
- TotalNotActivateRegistUser int `xorm:"-"`
- TotalHasActivityUser int `xorm:"NOT NULL DEFAULT 0"`
- DisplayDate string `xorm:"-"`
- DataDate string `xorm:"NULL"`
- DaysForMonth int `xorm:"NOT NULL DEFAULT 0"`
- HasActivityUserJson string `xorm:"text NULL"` //贡献活动用户列表
- ActivityUserJson string `xorm:"text NULL"` //激活用户列表
- CurrentDayRegistUser int `xorm:"NOT NULL DEFAULT 0"` //当天注册用户
- }
|