Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
midjourney-proxy
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
徐少华
midjourney-proxy
Commits
91518240
Commit
91518240
authored
Jan 17, 2019
by
songxiang
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://192.168.89.173/rays/pcloud-common-parent.git
parents
e7f60837
a9ee8aa5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
0 deletions
+39
-0
DubbingDTO.java
...n/java/com/pcloud/common/core/dto/dubbing/DubbingDTO.java
+26
-0
DubbingResultDTO.java
.../com/pcloud/common/core/dto/dubbing/DubbingResultDTO.java
+13
-0
No files found.
pcloud-common-core/src/main/java/com/pcloud/common/core/dto/dubbing/DubbingDTO.java
View file @
91518240
...
@@ -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
;
}
}
...
...
pcloud-common-core/src/main/java/com/pcloud/common/core/dto/dubbing/DubbingResultDTO.java
View file @
91518240
...
@@ -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
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment