Commit 4e732fe2 by 李传峰

Merge branch 'feature/1007618' into 'master'

feat: [none] 多语音合成

See merge request rays/pcloud-common-parent!291
parents 29adcb77 5e880363
...@@ -63,6 +63,11 @@ public class DubbingDTO implements Serializable { ...@@ -63,6 +63,11 @@ public class DubbingDTO implements Serializable {
*/ */
private Long musicId; private Long musicId;
/**
* 扩展参数
*/
private String ext;
public String getSoundUrl() { public String getSoundUrl() {
return soundUrl; return soundUrl;
} }
...@@ -135,6 +140,14 @@ public class DubbingDTO implements Serializable { ...@@ -135,6 +140,14 @@ public class DubbingDTO implements Serializable {
this.bgms = bgms; this.bgms = bgms;
} }
public String getExt() {
return ext;
}
public void setExt(String ext) {
this.ext = ext;
}
@Override @Override
public String toString() { public String toString() {
return "DubbingDTO : " + JSONObject.toJSONString(this); return "DubbingDTO : " + JSONObject.toJSONString(this);
......
...@@ -49,6 +49,12 @@ public class DubbingResultDTO implements Serializable { ...@@ -49,6 +49,12 @@ public class DubbingResultDTO implements Serializable {
*/ */
private Long musicId; private Long musicId;
/**
* 扩展参数
*/
private String ext;
public String getFromType() { public String getFromType() {
return fromType; return fromType;
} }
...@@ -97,6 +103,14 @@ public class DubbingResultDTO implements Serializable { ...@@ -97,6 +103,14 @@ public class DubbingResultDTO implements Serializable {
this.mixAudio = mixAudio; this.mixAudio = mixAudio;
} }
public String getExt() {
return ext;
}
public void setExt(String ext) {
this.ext = ext;
}
@Override @Override
public String toString() { public String toString() {
return "DubbingResultDTO : " + JSONObject.toJSONString(this); return "DubbingResultDTO : " + JSONObject.toJSONString(this);
......
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