|
- 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"`
- }
|