Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
chnmuseum-party
Project
Project
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
liqin
chnmuseum-party
Commits
124695b6
Commit
124695b6
authored
May 11, 2021
by
jiawei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改 视频初审员和视频复审员查看视频详情报500,服务异常 错误
parent
16686519
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
VideoContentController.java
...hnmuseum/party/web/controller/VideoContentController.java
+4
-0
No files found.
src/main/java/cn/chnmuseum/party/web/controller/VideoContentController.java
View file @
124695b6
...
@@ -276,6 +276,10 @@ public class VideoContentController extends BaseController {
...
@@ -276,6 +276,10 @@ public class VideoContentController extends BaseController {
@MethodLog
(
operModule
=
OperModule
.
VIDEOCONTENT
,
operType
=
OperType
.
SELECT
)
@MethodLog
(
operModule
=
OperModule
.
VIDEOCONTENT
,
operType
=
OperType
.
SELECT
)
public
Map
<
String
,
Object
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
public
Map
<
String
,
Object
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
VideoContent
videoContent
=
videoContentService
.
getById
(
id
);
VideoContent
videoContent
=
videoContentService
.
getById
(
id
);
//修改服务器报500错误
if
(
videoContent
==
null
){
return
getSuccessResult
();
}
if
(
videoContent
.
getVideoContentCatId
()
!=
null
)
{
if
(
videoContent
.
getVideoContentCatId
()
!=
null
)
{
VideoContentCat
videoContentCat
=
this
.
videoContentCatService
.
getById
(
videoContent
.
getVideoContentCatId
());
VideoContentCat
videoContentCat
=
this
.
videoContentCatService
.
getById
(
videoContent
.
getVideoContentCatId
());
if
(
videoContentCat
!=
null
)
{
if
(
videoContentCat
!=
null
)
{
...
...
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