|
@@ -218,11 +218,12 @@ func ReplyUserQuestion(replierId, questionId int, audios []*request.ReplyReqAudi
|
|
|
}
|
|
|
// 问题
|
|
|
updateCols := make([]string, 0)
|
|
|
- updateCols = append(updateCols, "reply_status", "reply_time", "modify_time")
|
|
|
+ updateCols = append(updateCols, "reply_status", "reply_time", "modify_time", "msg_send_status")
|
|
|
nowTime := time.Now().Local()
|
|
|
item.ReplyStatus = 3
|
|
|
item.ReplyTime = nowTime
|
|
|
item.ModifyTime = nowTime
|
|
|
+ item.MsgSendStatus = 2
|
|
|
// 音频
|
|
|
audioList := make([]*yb_community_question_audio.YbCommunityQuestionAudio, 0)
|
|
|
for _, v := range audios {
|