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
bec5df1d
Commit
bec5df1d
authored
Oct 11, 2018
by
songxiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
直播转码常量类
parent
c8848fc3
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
6 deletions
+24
-6
ConvertQueueDto.java
...main/java/com/pcloud/common/core/dto/ConvertQueueDto.java
+18
-5
TranscodeFromEnum.java
.../java/com/pcloud/common/core/enums/TranscodeFromEnum.java
+6
-1
No files found.
pcloud-common-core/src/main/java/com/pcloud/common/core/dto/ConvertQueueDto.java
View file @
bec5df1d
...
...
@@ -3,11 +3,12 @@
*/
package
com
.
pcloud
.
common
.
core
.
dto
;
import
io.swagger.annotations.ApiModelProperty
;
import
java.io.Serializable
;
/**
* @描述:
*
* @作者:songx
* @创建时间:2017年2月27日,上午11:23:29 @版本:1.0
*/
...
...
@@ -34,6 +35,12 @@ public class ConvertQueueDto implements Serializable {
private
String
fromType
;
/**
* 自定义类型,fromType的二级类型
*/
@ApiModelProperty
(
name
=
"自定义类型"
,
dataType
=
"String"
)
private
String
customType
;
/**
* 来源标识
*/
private
Long
fromId
;
...
...
@@ -83,6 +90,14 @@ public class ConvertQueueDto implements Serializable {
*/
private
String
m3u8Url
;
public
String
getCustomType
()
{
return
customType
;
}
public
void
setCustomType
(
String
customType
)
{
this
.
customType
=
customType
;
}
public
String
getM3u8Url
()
{
return
m3u8Url
;
}
...
...
@@ -171,8 +186,7 @@ public class ConvertQueueDto implements Serializable {
}
/**
* @param fileUrl
* The fileUrl to set.
* @param fileUrl The fileUrl to set.
*/
public
void
setFileUrl
(
String
fileUrl
)
{
this
.
fileUrl
=
fileUrl
;
...
...
@@ -186,8 +200,7 @@ public class ConvertQueueDto implements Serializable {
}
/**
* @param fileSize
* The fileSize to set.
* @param fileSize The fileSize to set.
*/
public
void
setFileSize
(
Long
fileSize
)
{
this
.
fileSize
=
fileSize
;
...
...
pcloud-common-core/src/main/java/com/pcloud/common/core/enums/TranscodeFromEnum.java
View file @
bec5df1d
...
...
@@ -37,7 +37,12 @@ public enum TranscodeFromEnum {
/**
* 直播
*/
LIVE_PPT
(
"LIVE_PPT"
);
LIVE_PPT
(
"LIVE_PPT"
),
/**
* 直播
*/
LIVE_HOMEWORD
(
"LIVE_HOMEWORD"
);
/**
* 值
...
...
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