12345678910111213141516171819202122232425262728293031323334353637383940 |
- package models
- type IndustrialManagementRep struct {
- IndustryName string `description:"产业名称"`
- IndustrialManagementId int `description:"产业id"`
- ChartPermissionId int `description:"权限id"`
- RecommendedIndex int `description:"推荐指数"`
- LayoutTime string `description:"布局时间"`
- ArticleReadNum int `description:"文章阅读数量"`
- IsResearch bool `description:"是否属于研选"`
- IsJump bool `description:"是否跳转"`
- }
- type IndustrialManagementCount struct {
- IndustrialManagementId int `orm:"column(industrial_management_id);pk" description:"产业id"`
- }
- type IndustrialManagementIdInt struct {
- IndustrialManagementId int `description:"产业Id"`
- IndustryName string `description:"产业名称"`
- SubjectName string `description:"标的名称"`
- ArticleId int `description:"文章ID"`
- IsResearch bool `description:"是否属于研选"`
- }
- type IndustrialManagementIdInts struct {
- IndustrialManagementId int `description:"产业Id"`
- IndustryName string `description:"产业名称"`
- SubjectNames string `description:"标的名称"`
- ArticleId int `description:"文章ID"`
- IndustrialAndSubjectIds string `description:"关联标的以及产业ID"`
- }
- type IndustrialManagementIdName struct {
- DepartmentId int `description:"作者ID"`
- ArticleId int `description:"文章id"`
- IndustryName string `description:"产业名称"`
- SubjectName string `description:"标的名称"`
- IsReport string `description:"1观点,0纪要"`
- }
|