소스 검색

Merge branch 'photo' of https://git.malls.iformall.com/suimang/suimangServer into photo

private_deployment
xhxu 2 년 전
부모
커밋
d801debbf2
1개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  1. +6
    -3
      suimangService/src/main/java/com/iformall/service/sm/impl/PhotoSpeakVideoServiceImpl.java

+ 6
- 3
suimangService/src/main/java/com/iformall/service/sm/impl/PhotoSpeakVideoServiceImpl.java 파일 보기

@@ -159,14 +159,17 @@ public class PhotoSpeakVideoServiceImpl implements PhotoSpeakVideoService {
videoUpd.setId(photoSpeakVideo.getId()); videoUpd.setId(photoSpeakVideo.getId());


String personPhotoUrl = null; String personPhotoUrl = null;
if(photoSpeakVideo.getPersonPhotoId() == null){
if (photoSpeakVideo.getPersonPhotoId() == null) {
msg = "未查询到人物照片"; msg = "未查询到人物照片";
}else{
} else {
personPhotoUrl = photoSpeakVideo.getPersonPhotoUrl(); personPhotoUrl = photoSpeakVideo.getPersonPhotoUrl();
//校验图片是否合法 //校验图片是否合法
ResultData data = personPhotoService.checkPhoto(personPhotoUrl); ResultData data = personPhotoService.checkPhoto(personPhotoUrl);
if (data.code != 2000) { if (data.code != 2000) {
return new AsyncResult<>(data.message);
videoUpd.setVideoStatus(EnumVideoStatus.fail.getCode());
videoUpd.setVideoMsg("图片质量审核失败:" + data.message);
this.saveOrUpdate(videoUpd);
return new AsyncResult<>(0);
} }
} }
if(StringUtils.isBlank(personPhotoUrl)){ if(StringUtils.isBlank(personPhotoUrl)){


불러오는 중...
취소
저장