Compare commits

..

No commits in common. "8fe0d6ab7ad8c9aa01318b2338dd182cce55cd83" and "63f7029192fb5cde552d7a9d92ecc0b25f78f058" have entirely different histories.

View File

@ -101,7 +101,7 @@ func (chatDao) GetChatRecordById(id int) (res model.ChatRecord, err error) {
// 批量查询ChatRecord
func (chatDao) GetChatRecordList(info *accountFiee.GetChatRecordListRequest) (resp []model.ChatRecord, total int64, err error) {
var dbQuery = model.DB.Model(&model.ChatRecord{}).Preload("Medias").Debug()
var dbQuery = model.DB.Model(&model.ChatRecord{}).Preload("Medias")
if info.Query != nil {
if info.Query.SessionId != "" {