浏览代码

//bug

private_deployment
xhxu 1年前
父节点
当前提交
4a4eaddca2
共有 1 个文件被更改,包括 5 次插入3 次删除
  1. +5
    -3
      suimangService/src/main/java/com/iformall/service/sm/impl/UserMouldVideoServiceImpl.java

+ 5
- 3
suimangService/src/main/java/com/iformall/service/sm/impl/UserMouldVideoServiceImpl.java 查看文件

@@ -209,7 +209,8 @@ public class UserMouldVideoServiceImpl implements UserMouldVideoService {
try{
JSONObject personMouldObject = JSONObject.parseObject(mouldVideo.getPersonMouldSm());
personMouldSmId = personMouldObject.getString("mouldSmId");
}catch(Exception e){
}catch(Exception e){}
if(StringUtils.isBlank(personMouldSmId)){
msg = "参数错误,未找到人物模板数据";
}
}
@@ -227,7 +228,8 @@ public class UserMouldVideoServiceImpl implements UserMouldVideoService {
try{
JSONObject personMouldObject = JSONObject.parseObject(mouldVideo.getVoiceMouldSm());
voiceMouldSmId = personMouldObject.getString("mouldSmId");
}catch(Exception e){
}catch(Exception e){}
if(StringUtils.isBlank(voiceMouldSmId)){
msg = "参数错误,未找到声音模板数据";
}
}
@@ -265,7 +267,7 @@ public class UserMouldVideoServiceImpl implements UserMouldVideoService {
}catch(Exception e){
e.printStackTrace();
videoUpd.setVideoStatus(EnumVideoStatus.fail.getCode());
videoUpd.setVideoMsg(e.getMessage());
videoUpd.setVideoMsg("请求异常");
this.saveOrUpdate(videoUpd);
return new AsyncResult<>(0);
}


正在加载...
取消
保存