12345678910111213141516171819202122232425262728 |
- package models
- type IndustrialManagementList struct {
- List []*IndustrialManagement
- }
- type IndustrialManagement struct {
- IndustrialManagementId int `orm:"column(industrial_management_id);pk" description:"产业id"`
- IndustryName string `description:"产业名称"`
- RecommendedIndex int `description:"推荐指数"`
- LayoutTime string `description:"布局时间"`
- UpdateTime string `description:"更新时间"`
- IsRed bool `description:"是否标记红点"`
- IsTop bool `description:"是否置顶"`
- AnalystList []*IndustrialAnalyst `description:"分析师列表"`
- IndustrialSubjectList []*IndustrialSubject `description:"标的列表"`
- }
- type IndustrialAnalyst struct {
- AnalystName string `description:"分析师名称"`
- IndustrialManagementId int `description:"产业id"`
- }
- type IndustrialSubject struct {
- IndustrialSubjectId int `orm:"column(industrial_subject_id);pk" description:"标的id"`
- IndustrialManagementId int `description:"产业id"`
- SubjectName string `description:"标的名称"`
- }
|