|
@@ -129,20 +129,20 @@ public class TourismProjectTravelNotesWriteController {
|
|
|
return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核状态不能为未审核");
|
|
|
}
|
|
|
else if(tourismProjectTravelNotesWriteDto.getState().equals(AuditState.FAILAUDIT) && StringUtils.isBlank(tourismProjectTravelNotesWriteDto.getReason())){
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核未通过,则审核原因不能为空");
|
|
|
- }else {
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核未通过,审核原因不能为空");
|
|
|
+ }else if(tourismProjectTravelNotesWriteDto.getState().equals(AuditState.SUCCEEDAUDIT)){
|
|
|
if (tourismProjectTravelNotesWriteDto.getIsHotspot() == null){
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,则热度值不能为空");
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,热度值不能为空");
|
|
|
}else if(StringUtils.isBlank(tourismProjectTravelNotesWriteDto.getNoteLabel())){
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,则标签不能为空");
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,标签不能为空");
|
|
|
}else if(tourismProjectTravelNotesWriteDto.getLikeCount() == null){
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,则点赞数不能为空");
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,点赞数不能为空");
|
|
|
}else if(tourismProjectTravelNotesWriteDto.getPageViewCount() == null){
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,则浏览数不能为空");
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,浏览数不能为空");
|
|
|
}else if(tourismProjectTravelNotesWriteDto.getHotValue() == null){
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,则热度值不能为空");
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,热度值不能为空");
|
|
|
}else if(tourismProjectTravelNotesWriteDto.getIsOriginal() == null){
|
|
|
- return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,则是否原创不能为空");
|
|
|
+ return ResponseResult.error(ErrorCodeEnum.DATA_VALIDATED_FAILED, "审核通过,是否原创不能为空");
|
|
|
}
|
|
|
|
|
|
}
|