report.go 1.2 KB

12345678910111213141516171819202122232425262728
  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. IndustrialSubjectList []*IndustrialSubject `description:"标的列表"`
  15. }
  16. type IndustrialAnalyst struct {
  17. AnalystName string `description:"分析师名称"`
  18. IndustrialManagementId int `description:"产业id"`
  19. }
  20. type IndustrialSubject struct {
  21. IndustrialSubjectId int `orm:"column(industrial_subject_id);pk" description:"标的id"`
  22. IndustrialManagementId int `description:"产业id"`
  23. SubjectName string `description:"标的名称"`
  24. }