Commit 91518240 by songxiang
parents e7f60837 a9ee8aa5
...@@ -29,6 +29,16 @@ public class DubbingDTO implements Serializable { ...@@ -29,6 +29,16 @@ public class DubbingDTO implements Serializable {
private String[] bgms; private String[] bgms;
/** /**
* 录音文件地址
*/
private String soundUrl;
/**
* 来源类型
*/
private String fromType;
/**
* 导语 * 导语
*/ */
private String beforeText; private String beforeText;
...@@ -53,6 +63,22 @@ public class DubbingDTO implements Serializable { ...@@ -53,6 +63,22 @@ public class DubbingDTO implements Serializable {
*/ */
private Long musicId; private Long musicId;
public String getSoundUrl() {
return soundUrl;
}
public void setSoundUrl(String soundUrl) {
this.soundUrl = soundUrl;
}
public String getFromType() {
return fromType;
}
public void setFromType(String fromType) {
this.fromType = fromType;
}
public String getBeforeText() { public String getBeforeText() {
return beforeText; return beforeText;
} }
......
...@@ -20,6 +20,11 @@ public class DubbingResultDTO implements Serializable { ...@@ -20,6 +20,11 @@ public class DubbingResultDTO implements Serializable {
private static final long serialVersionUID = 2458000180158610651L; private static final long serialVersionUID = 2458000180158610651L;
/** /**
* 来源类型
*/
private String fromType;
/**
* 语音文件 * 语音文件
*/ */
private List<AudioDTO> speechs; private List<AudioDTO> speechs;
...@@ -44,6 +49,14 @@ public class DubbingResultDTO implements Serializable { ...@@ -44,6 +49,14 @@ public class DubbingResultDTO implements Serializable {
*/ */
private Long musicId; private Long musicId;
public String getFromType() {
return fromType;
}
public void setFromType(String fromType) {
this.fromType = fromType;
}
public Long getAppId() { public Long getAppId() {
return appId; return appId;
} }
......
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