report.go 1.3 KB

1234567891011121314151617181920212223242526272829
  1. package models
  2. type IndustrialManagementList struct {
  3. List []*IndustrialManagement
  4. }
  5. type IndustrialManagement struct {
  6. IndustrialManagementId int `orm:"column(industrial_management_id);pk" description:"产业id"`
  7. IndustryName string `description:"产业名称"`
  8. RecommendedIndex int `description:"推荐指数"`
  9. LayoutTime string `description:"布局时间"`
  10. UpdateTime string `description:"更新时间"`
  11. IsRed bool `description:"是否标记红点"`
  12. IsTop bool `description:"是否置顶"`
  13. AnalystList []*IndustrialAnalyst `description:"分析师列表"`
  14. Analyst string `description:"分析师"`
  15. IndustrialSubjectList []*IndustrialSubject `description:"标的列表"`
  16. }
  17. type IndustrialAnalyst struct {
  18. AnalystName string `description:"分析师名称"`
  19. IndustrialManagementId int `description:"产业id"`
  20. }
  21. type IndustrialSubject struct {
  22. IndustrialSubjectId int `orm:"column(industrial_subject_id);pk" description:"标的id"`
  23. IndustrialManagementId int `description:"产业id"`
  24. SubjectName string `description:"标的名称"`
  25. }