1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- package yb_comment
- import (
- "hongze/hongze_yb/global"
- "hongze/hongze_yb/utils"
- )
- // GetListByUserIdReportId 获取用户的留言列表
- func GetListByUserIdReportId(userId uint64, reportId, reportChapterId int) (list []*YbComment, err error) {
- err = global.DEFAULT_MYSQL.Model(YbComment{}).
- Where("user_id = ? and report_id = ? and report_chapter_id = ? and enabled = 1 ", userId, reportId, reportChapterId).
- Order("create_time desc, comment_id desc").
- Scan(&list).Error
- if err == utils.ErrNoRow {
- err = nil
- }
- return
- }
- // GetListByUserIdOldReportId 获取用户的留言列表
- func GetListByUserIdOldReportId(userId uint64, oldReportId, oldReportChapterId int) (list []*YbComment, err error) {
- err = global.DEFAULT_MYSQL.Model(YbComment{}).
- Where("user_id = ? and old_report_id = ? and old_report_chapter_id = ? and enabled = 1 ", userId, oldReportId, oldReportChapterId).
- Order("create_time desc, comment_id desc").
- Scan(&list).Error
- if err == utils.ErrNoRow {
- err = nil
- }
- return
- }
- // GetHotListByReportId 获取报告的精选留言列表
- func GetHotListByReportId(reportId, reportChapterId int, offset, limit int) (list []*YbComment, err error) {
- err = global.DEFAULT_MYSQL.Model(YbComment{}).
- Where("report_id = ? and report_chapter_id = ? and enabled = 1 and is_hot = 1 and type = 1", reportId, reportChapterId).
- Order("is_top desc, hot_top_time desc, comment_id desc").
- Offset(offset).
- Limit(limit).
- Scan(&list).Error
- return
- }
- // GetHotListTotalByReportId 获取精选留言总条数
- func GetHotListTotalByReportId(reportId, reportChapterId int)(total int64, err error) {
- err = global.DEFAULT_MYSQL.Model(YbComment{}).
- Where("report_id = ? and report_chapter_id = ? and enabled = 1 and is_hot = 1 and type = 1", reportId, reportChapterId).
- Count(&total).Error
- return
- }
- // GetHotListByOldReportId 获取老报告的精选留言列表
- func GetHotListByOldReportId(oldReportId, oldReportChapterId int, offset, limit int) (list []*YbComment, err error) {
- err = global.DEFAULT_MYSQL.Model(YbComment{}).
- Where("old_report_id = ? and old_report_chapter_id = ? and enabled = 1 and is_hot = 1 and type = 1", oldReportId, oldReportChapterId).
- Order("is_top desc, hot_top_time desc, comment_id desc").
- Offset(offset).
- Limit(limit).
- Scan(&list).Error
- return
- }
- // GetHotListTotalByOldReportId 获取老报告的精选留言总条数
- func GetHotListTotalByOldReportId(oldReportId, oldReportChapterId int)(total int64, err error) {
- err = global.DEFAULT_MYSQL.Model(YbComment{}).
- Where("old_report_id = ? and old_report_chapter_id = ? and enabled = 1 and is_hot = 1 and type = 1", oldReportId, oldReportChapterId).
- Count(&total).Error
- return
- }
- // GetReplyListByReplyCommentId 获取报告的精选留言的回复列表
- func GetReplyListByReplyCommentId(reportId, reportChapterId int, replyCommentIds []uint64) (list []*YbComment, err error) {
- err = global.DEFAULT_MYSQL.Model(YbComment{}).
- Where("report_id = ? and report_chapter_id = ? and enabled = 1 and type = 2 and reply_comment_id in ?", reportId, reportChapterId, replyCommentIds).
- Order("create_time desc, comment_id desc").
- Scan(&list).Error
- return
- }
- // GetSimpleByCommentId 根据评论ID,查询评论
- func GetSimpleByCommentId(commentId uint64)(item *YbComment, err error) {
- err = global.DEFAULT_MYSQL.Model(YbComment{}).
- Select("comment_id, user_id, type, enabled").
- Where("comment_id = ?", commentId).First(&item).Error
- if err == utils.ErrNoRow {
- err = nil
- }
- return
- }
|