|
@@ -13,6 +13,7 @@ type ReportMapping struct {
|
|
|
ChartPermissionId int `description:"行业ID"`
|
|
|
IsRed bool `description:"是否标红"`
|
|
|
PermissionType int `description:"1主观,2客观"`
|
|
|
+ PolymerizationId string `description:"分类聚合ID"`
|
|
|
}
|
|
|
|
|
|
type ReportMappingHome struct {
|
|
@@ -23,12 +24,14 @@ type ReportMappingHome struct {
|
|
|
}
|
|
|
|
|
|
type TradeReportMapping struct {
|
|
|
- CategoryId int `description:"分类ID"`
|
|
|
- SubCategoryName string `description:"主题名称"`
|
|
|
- MatchTypeName string `description:"匹配类型"`
|
|
|
- IsRed bool `description:"是否标红"`
|
|
|
- UpdateTime string `description:"更新时间"`
|
|
|
- Readnum int `description:"阅读数量"`
|
|
|
+ CategoryId int `description:"分类ID"`
|
|
|
+ CategoryIdSet int `description:"分类映射id"`
|
|
|
+ PolymerizationId string `description:"分类聚合ID"`
|
|
|
+ SubCategoryName string `description:"主题名称"`
|
|
|
+ MatchTypeName string `description:"匹配类型"`
|
|
|
+ IsRed bool `description:"是否标红"`
|
|
|
+ UpdateTime string `description:"更新时间"`
|
|
|
+ Readnum int `description:"阅读数量"`
|
|
|
}
|
|
|
|
|
|
type ReportMappingResp struct {
|
|
@@ -74,22 +77,19 @@ ORDER BY
|
|
|
func GetTradeAll(ChartPermissionId int) (items []*TradeReportMapping, err error) {
|
|
|
o := orm.NewOrm()
|
|
|
sql := `SELECT
|
|
|
- MAX( art.publish_date ) AS update_time,
|
|
|
- re.category_id,
|
|
|
- re.sub_category_name,
|
|
|
- re.match_type_name
|
|
|
+ re.category_id,
|
|
|
+ re.category_id_set,
|
|
|
+ re.polymerization_id,
|
|
|
+ re.sub_category_name,
|
|
|
+ re.match_type_name
|
|
|
FROM
|
|
|
- cygx_report_mapping AS re
|
|
|
- INNER JOIN cygx_article AS art ON re.category_id = art.category_id
|
|
|
+ cygx_report_mapping AS re
|
|
|
WHERE
|
|
|
- re.chart_permission_id =?
|
|
|
- AND re.report_type = 1
|
|
|
- AND art.is_class = 1
|
|
|
- AND re.category_id NOT IN (67)
|
|
|
- GROUP BY
|
|
|
- art.category_id
|
|
|
+ re.chart_permission_id = ?
|
|
|
+ AND re.report_type = 1
|
|
|
+ AND re.category_id NOT IN ( 67 )
|
|
|
ORDER BY
|
|
|
- update_time DESC`
|
|
|
+ re.sort DESC `
|
|
|
_, err = o.Raw(sql, ChartPermissionId).QueryRows(&items)
|
|
|
return
|
|
|
}
|