|
- 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"`
- }
-
- 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"`
- }
-
- 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"`
- }
-
- 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"`
- }
-
- 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"`
- }
-
- 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"`
- }
-
- 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"`
- HasActivityUser int `xorm:"NOT NULL DEFAULT 0"`
- TotalActivateRegistUser int `xorm:"NOT NULL DEFAULT 0"`
- TotalHasActivityUser int `xorm:"NOT NULL DEFAULT 0"`
- }
|