|
@@ -17,7 +17,7 @@ type ReportChapterTicker struct {
|
|
|
// GetTickerByChapterId
|
|
|
func GetTickerByChapterId(reportChapterId int) (list []*ReportChapterTicker, err error) {
|
|
|
o := orm.NewOrmUsingDB("rddp")
|
|
|
- sql := `SELECT * FROM report_chapter WHERE report_chapter_id = ? `
|
|
|
+ sql := `SELECT * FROM report_chapter_ticker WHERE report_chapter_id = ? `
|
|
|
_, err = o.Raw(sql, reportChapterId).QueryRows(&list)
|
|
|
return
|
|
|
}
|