|
@ -319,7 +319,7 @@ public class TopicDraftServiceImpl extends BaseServiceImpl<TopicDraftDao, TopicD |
|
|
TopicDraftEntity draftEntity = new TopicDraftEntity(); |
|
|
TopicDraftEntity draftEntity = new TopicDraftEntity(); |
|
|
draftEntity.setId(draftId); |
|
|
draftEntity.setId(draftId); |
|
|
draftEntity.setDraftStatus(TopicConstant.REVIEW); |
|
|
draftEntity.setDraftStatus(TopicConstant.REVIEW); |
|
|
draftEntity.setDraftReason("需要人工审核"); |
|
|
draftEntity.setDraftReason("语音存在违规内容"); |
|
|
baseDao.updateById(draftEntity); |
|
|
baseDao.updateById(draftEntity); |
|
|
|
|
|
|
|
|
} else if(TopicConstant.REVIEW.equals(status)) { |
|
|
} else if(TopicConstant.REVIEW.equals(status)) { |
|
@ -327,7 +327,7 @@ public class TopicDraftServiceImpl extends BaseServiceImpl<TopicDraftDao, TopicD |
|
|
TopicDraftEntity draftEntity = new TopicDraftEntity(); |
|
|
TopicDraftEntity draftEntity = new TopicDraftEntity(); |
|
|
draftEntity.setId(draftId); |
|
|
draftEntity.setId(draftId); |
|
|
draftEntity.setDraftStatus(TopicConstant.BLOCK); |
|
|
draftEntity.setDraftStatus(TopicConstant.BLOCK); |
|
|
draftEntity.setDraftReason("语音存在违规内容"); |
|
|
draftEntity.setDraftReason("需要人工审核"); |
|
|
baseDao.updateById(draftEntity); |
|
|
baseDao.updateById(draftEntity); |
|
|
|
|
|
|
|
|
} else if(TopicConstant.AUTO_PASSED.equals(status)) { |
|
|
} else if(TopicConstant.AUTO_PASSED.equals(status)) { |
|
|