|
@@ -166,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 {
|