|
@@ -32,18 +32,19 @@ type CygxReportSelectionLogRep struct {
|
|
|
}
|
|
|
|
|
|
type AddCygxReportSelectionLog struct {
|
|
|
- ChartPermissionId int `description:"行业ID"`
|
|
|
- IndustrialSubjectId string `description:"标的ID"`
|
|
|
- SubjectName string `description:"标的名称"`
|
|
|
- IndustrialSubjectName string `description:"标的ID"`
|
|
|
- Body string `description:"内容"`
|
|
|
- IndustrialManagementId string `description:"产业资源包Id 多个用 , 隔开"`
|
|
|
- IndustrialManagementName string `description:"产业资源包Id 多个用 , 隔开"`
|
|
|
- CompanyLabel []string `description:"公司标签"`
|
|
|
- Label string `description:"公司标签"`
|
|
|
- OverviewArticleId int `description:"综述报告Id"`
|
|
|
- IsNew int `description:"是否为New标签"`
|
|
|
- IsShowOverviewArticle int `description:"是否展示综述报告 1展示,0隐藏"`
|
|
|
+ ChartPermissionId int `description:"行业ID"`
|
|
|
+ IndustrialSubjectId string `description:"标的ID"`
|
|
|
+ SubjectName string `description:"标的名称"`
|
|
|
+ IndustrialSubjectName string `description:"标的ID"`
|
|
|
+ Body string `description:"内容"`
|
|
|
+ IndustrialManagementId string `description:"产业资源包Id 多个用 , 隔开"`
|
|
|
+ IndustrialManagementName string `description:"产业资源包Id 多个用 , 隔开"`
|
|
|
+ IndustrialManagementNames string `description:"产业资源包Id 多个用 , 隔开"`
|
|
|
+ CompanyLabel []string `description:"公司标签"`
|
|
|
+ Label string `description:"公司标签"`
|
|
|
+ OverviewArticleId int `description:"综述报告Id"`
|
|
|
+ IsNew int `description:"是否为New标签"`
|
|
|
+ IsShowOverviewArticle int `description:"是否展示综述报告 1展示,0隐藏"`
|
|
|
}
|
|
|
|
|
|
type CygxReportSelectionLogResp struct {
|
|
@@ -116,7 +117,6 @@ func GetReportSelectionlogListAll(articleId int) (items []*CygxReportSelectionLo
|
|
|
sql := `SELECT l.*
|
|
|
FROM
|
|
|
cygx_report_selection_log AS l
|
|
|
- INNER JOIN cygx_industrial_subject AS s ON s.industrial_subject_id = l.industrial_subject_id
|
|
|
WHERE l.article_id = ? `
|
|
|
_, err = o.Raw(sql, articleId).QueryRows(&items)
|
|
|
return
|