正在显示
1 个修改的文件
包含
6 行增加
和
0 行删除
@@ -418,6 +418,12 @@ func UpdateBulletin(companyId int64, request *protocol.UpdateBulletinRequest) (r | @@ -418,6 +418,12 @@ func UpdateBulletin(companyId int64, request *protocol.UpdateBulletinRequest) (r | ||
418 | } | 418 | } |
419 | if err == orm2.ErrNoRows { | 419 | if err == orm2.ErrNoRows { |
420 | //添加 | 420 | //添加 |
421 | + questionContent, err = json.Marshal(request.Question.Content) | ||
422 | + if err != nil { | ||
423 | + orm.Rollback() | ||
424 | + log.Error("格式化问题失败:%s", err) | ||
425 | + return | ||
426 | + } | ||
421 | bulletinQuestion = &models.BulletinQuestion{ | 427 | bulletinQuestion = &models.BulletinQuestion{ |
422 | BulletinId: bulletin.Id, | 428 | BulletinId: bulletin.Id, |
423 | Type: int8(request.Question.Type), | 429 | Type: int8(request.Question.Type), |
-
请 注册 或 登录 后发表评论