Commit 21229162 by 阮思源

1002451 阶段创建非关键词回复内容时非必填标题,熔断回复非必填标题

parent 9a7b3d29
...@@ -68,9 +68,6 @@ public class PersonalStageCheck { ...@@ -68,9 +68,6 @@ public class PersonalStageCheck {
if (reply==null){ if (reply==null){
throw new BookBizException(BookBizException.PARAM_IS_ERROR,"回复不能为空!"); throw new BookBizException(BookBizException.PARAM_IS_ERROR,"回复不能为空!");
} }
if (StringUtil.isEmpty(reply.getName())){
throw new BookBizException(BookBizException.PARAM_IS_ERROR,"回复名称不能为空!");
}
if (ListUtils.isEmpty(reply.getPersonalStageReplyItems())){ if (ListUtils.isEmpty(reply.getPersonalStageReplyItems())){
throw new BookBizException(BookBizException.PARAM_IS_ERROR,"回复项集合不能为空!"); throw new BookBizException(BookBizException.PARAM_IS_ERROR,"回复项集合不能为空!");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment