|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716 |
- package models
-
- import "code.gitea.io/gitea/modules/timeutil"
-
- type UserSummaryCurrentYear struct {
- ID int64 `xorm:"pk"`
- Email string `xorm:"NOT NULL"`
- //user
- Name string `xorm:"NOT NULL"`
- Phone string `xorm:"NULL"`
- //user
- RegistDate timeutil.TimeStamp `xorm:"NOT NULL"`
-
- DateCount int `xorm:"NOT NULL DEFAULT 0"`
- MostActiveDay string `xorm:" NULL "` //08.05
- RepoInfo string `xorm:"varchar(1000)"` //创建了XX 个项目,公开项目XX 个,私有项目XX 个累计被下载XXX 次,其中《XXXXXXX 》项目,获得了最高XXX 次下载
- DataSetInfo string `xorm:"varchar(500)"` //创建了XX 个数据集,上传了XX 个数据集文件,累计被下载XX 次,被收藏XX 次
- CodeInfo string `xorm:"varchar(500)"` //代码提交次数,提交总代码行数,最晚的提交时间
- CloudBrainInfo string `xorm:"varchar(1000)"` //,创建了XX 个云脑任务,调试任务XX 个,训练任务XX 个,推理任务XX 个,累计运行了XXXX 卡时,累计节省xxxxx 元
- //这些免费的算力资源分别有,XX% 来自鹏城云脑1,XX% 来自鹏城云脑2,XX% 来自智算网络
- PlayARoll string `xorm:"varchar(500)"` //你参加了XX 次“我为开源打榜狂”活动,累计上榜XX 次,总共获得了社区XXX 元的激励
- WeekBonusData string `xorm:"-"`
- Label string `xorm:"varchar(500)"`
- }
-
- 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"`
- InvitationUserNum int `xorm:"NOT NULL DEFAULT 0"`
- ModelConvertCount int `xorm:"NOT NULL DEFAULT 0"`
- }
-
- 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"`
- InvitationUserNum int `xorm:"NOT NULL DEFAULT 0"`
- ModelConvertCount int `xorm:"NOT NULL DEFAULT 0"`
- }
-
- 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"`
- InvitationUserNum int `xorm:"NOT NULL DEFAULT 0"`
- ModelConvertCount int `xorm:"NOT NULL DEFAULT 0"`
- }
-
- 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"`
- InvitationUserNum int `xorm:"NOT NULL DEFAULT 0"`
- ModelConvertCount int `xorm:"NOT NULL DEFAULT 0"`
- }
-
- 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"`
- InvitationUserNum int `xorm:"NOT NULL DEFAULT 0"`
- ModelConvertCount int `xorm:"NOT NULL DEFAULT 0"`
- }
-
- 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"`
- InvitationUserNum int `xorm:"NOT NULL DEFAULT 0"`
- ModelConvertCount int `xorm:"NOT NULL DEFAULT 0"`
- }
-
- 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"`
- InvitationUserNum int `xorm:"NOT NULL DEFAULT 0"`
- ModelConvertCount int `xorm:"NOT NULL DEFAULT 0"`
- }
-
- 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"` //当天注册用户
- }
-
- type UserBusinessAnalysisAll struct {
- ID int64 `xorm:"pk"`
-
- CountDate int64 `xorm:"pk"`
-
- //action :ActionMergePullRequest // 11
- CodeMergeCount int `xorm:"NOT NULL DEFAULT 0"`
-
- //action :ActionCommitRepo // 5
- CommitCount int `xorm:"NOT NULL DEFAULT 0"`
-
- //action :ActionCreateIssue // 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"`
-
- //cloudbraintask
- 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"`
- InvitationUserNum int `xorm:"NOT NULL DEFAULT 0"`
- ModelConvertCount int `xorm:"NOT NULL DEFAULT 0"`
- }
-
- type UserBusinessAnalysis struct {
- ID int64 `xorm:"pk"`
- DataDate string `xorm:"pk"`
- CountDate int64 `xorm:"NULL"`
-
- //action :ActionMergePullRequest // 11
- CodeMergeCount int `xorm:"NOT NULL DEFAULT 0"`
-
- //action :ActionCommitRepo // 5
- CommitCount int `xorm:"NOT NULL DEFAULT 0"`
-
- //action :ActionCreateIssue // 6
- 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"`
-
- 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"`
- InvitationUserNum int `xorm:"NOT NULL DEFAULT 0"`
- ModelConvertCount int `xorm:"NOT NULL DEFAULT 0"`
- }
|