|
@@ -32,6 +32,7 @@ type Report struct {
|
|
|
ClassifyName string `description:"分类名称"`
|
|
|
HasPermission int `description:"报告权限:0:无权限,1:有权限"`
|
|
|
TitleType string `description:"标题类型,FICC或者权益"`
|
|
|
+ RaiReportId int `description:"权益报告ID"`
|
|
|
}
|
|
|
|
|
|
func GetLatestReportList() (items []*Report, err error) {
|
|
@@ -92,6 +93,7 @@ type RecommendResp struct {
|
|
|
Stage int
|
|
|
ClassifyNameFirst string
|
|
|
ClassifySecondFirst string
|
|
|
+ RaiReportId int
|
|
|
}
|
|
|
|
|
|
type DetailBannerResp struct {
|
|
@@ -136,7 +138,7 @@ type LatestReportBanner struct {
|
|
|
// @return items []*Report
|
|
|
// @return err error
|
|
|
func GetRecommendListV2(reportId, reportType, firstId, secondId, thirdId int) (items []*Report, err error) {
|
|
|
- sql := `SELECT id,title,classify_name_first,classify_name_second, stage FROM report WHERE state=2 AND id<> ? AND classify_id_first=? AND classify_id_second=? AND classify_id_third=? `
|
|
|
+ sql := `SELECT id,title,classify_name_first,classify_name_second, stage, rai_report_id FROM report WHERE state=2 AND id<> ? AND classify_id_first=? AND classify_id_second=? AND classify_id_third=? `
|
|
|
if reportType == 1 {
|
|
|
sql += ` AND classify_name_first = ? `
|
|
|
} else {
|
|
@@ -151,7 +153,7 @@ func GetRecommendListV2(reportId, reportType, firstId, secondId, thirdId int) (i
|
|
|
func GetRaiRecommendList(reportId, firstId, secondId, thirdId int, publishTime time.Time) (items []*Report, err error) {
|
|
|
// 获取发布时间在当前报告之前的报告
|
|
|
var beforeItems []*Report
|
|
|
- beforeSql := `SELECT id,title,classify_name_first,classify_name_second, stage FROM report WHERE state=2 AND id<>? AND classify_id_first=? AND classify_id_second=? AND classify_id_third=?
|
|
|
+ beforeSql := `SELECT id,title,classify_name_first,classify_name_second, stage, rai_report_id FROM report WHERE state=2 AND id<>? AND classify_id_first=? AND classify_id_second=? AND classify_id_third=?
|
|
|
AND publish_time <= ? ORDER BY publish_time DESC, id DESC LIMIT 3`
|
|
|
err = global.MYSQL["rddp"].Raw(beforeSql, reportId, firstId, secondId, thirdId, publishTime).Find(&beforeItems).Error
|
|
|
if err != nil {
|
|
@@ -164,7 +166,7 @@ func GetRaiRecommendList(reportId, firstId, secondId, thirdId int, publishTime t
|
|
|
if len(beforeItems) < 3 {
|
|
|
var afterItems []*Report
|
|
|
remainCount := 3 - len(beforeItems)
|
|
|
- afterSql := `SELECT id,title,classify_name_first,classify_name_second, state FROM report WHERE state=2 AND id<>? AND classify_id_first=? AND classify_id_second=? AND classify_id_third=?
|
|
|
+ afterSql := `SELECT id,title,classify_name_first,classify_name_second, state, rai_report_id FROM report WHERE state=2 AND id<>? AND classify_id_first=? AND classify_id_second=? AND classify_id_third=?
|
|
|
AND publish_time > ? ORDER BY publish_time ASC, id ASC LIMIT ?`
|
|
|
err = global.MYSQL["rddp"].Raw(afterSql, reportId, firstId, secondId, thirdId, publishTime, remainCount).Find(&afterItems).Error
|
|
|
if err != nil {
|