| 123456789101112131415161718192021222324252627282930313233343536 |
- package model
- // ScaleTotal 实验室规模统计
- type ScaleTotal struct {
- SubjectTotal int `json:"subject_total"` //课题数量
- ResultsTotal int `json:"results_total"` // 成果数量
- OrganizationTotal int `json:"organization_total"` // 合作机构
- Researcher int `json:"researcher"` // 科研人员
- }
- // SubjectTotal 课题总量统计
- type SubjectTotal struct {
- Year string `json:"year"` // 年
- Total int `json:"total"` // 课题总量
- GrowthRate float64 `json:"growth_rate"` // 课题年度增长率
- }
- // ResultStatistics 平台数量
- type ResultStatistics struct {
- PlatformName string `json:"platform_name"` //平台名称
- SubjectTotal int `json:"subject_total"` // 课题数量
- ResultTotal int `json:"result_total"` // 成果数量
- }
- // Result 成果展示
- type Result struct {
- Name string `json:"name"` // 成果标题
- PlanNumber int `json:"plan_number"` // 年度计划数量
- CompletedNumber int `json:"completed_number"` // 完成数量
- }
- // Message 合作交流
- type Message struct {
- PublishTime string `json:"publish_time"` // 时间
- Msg string `json:"msg"` // 信息
- }
|