zwxi 9 ヶ月 前
コミット
9f139f6c81
1 ファイル変更1 行追加1 行削除
  1. 1 1
      models/ai_summary/ai_summary.go

+ 1 - 1
models/ai_summary/ai_summary.go

@@ -49,7 +49,7 @@ func GetAiChatTopicList(sysUserId int) (item []*AiSummary, err error) {
 }
 
 // GetAiSummaryById 根据纪要id获取沙盘详情
-func GetAiSummaryById(aiSummaryId int) (sandboxInfo *AiSummaryItems, err error) {
+func GetAiSummaryById(aiSummaryId int) (sandboxInfo *AiSummary, err error) {
 	o := orm.NewOrm()
 	sql := `select * from ai_summary where ai_summary_id = ? `
 	err = o.Raw(sql, aiSummaryId).QueryRow(&sandboxInfo)