Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fhjw
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
mengmeng
fhjw
Commits
d3c6214b
Commit
d3c6214b
authored
Jul 30, 2021
by
zhanghonggang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
转换异常修改
parent
55112575
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
FhjwQuestionController.java
.../hmit/modules/fhjw/controller/FhjwQuestionController.java
+1
-1
No files found.
hmit-api/src/main/java/io/hmit/modules/fhjw/controller/FhjwQuestionController.java
View file @
d3c6214b
...
@@ -71,7 +71,7 @@ public class FhjwQuestionController {
...
@@ -71,7 +71,7 @@ public class FhjwQuestionController {
@ApiImplicitParam
(
name
=
"tempId"
,
value
=
"模版ID"
,
paramType
=
"query"
,
required
=
true
,
dataType
=
"String"
)
,
@ApiImplicitParam
(
name
=
"tempId"
,
value
=
"模版ID"
,
paramType
=
"query"
,
required
=
true
,
dataType
=
"String"
)
,
})
})
public
Result
<
List
<
FhjwQuestionDTO
>>
getQuestionList
(
@ApiIgnore
@RequestParam
Map
<
String
,
Object
>
params
){
public
Result
<
List
<
FhjwQuestionDTO
>>
getQuestionList
(
@ApiIgnore
@RequestParam
Map
<
String
,
Object
>
params
){
Long
tempId
=
params
.
get
(
"tempId"
)
==
null
?
0L
:
(
Long
)
params
.
get
(
"tempId"
)
;
Long
tempId
=
params
.
get
(
"tempId"
)
==
null
?
0L
:
Long
.
parseLong
((
String
)
params
.
get
(
"tempId"
))
;
List
<
FhjwQuestionDTO
>
data
=
fhjwQuestionService
.
getQuestionList
(
tempId
);
List
<
FhjwQuestionDTO
>
data
=
fhjwQuestionService
.
getQuestionList
(
tempId
);
return
new
Result
<
List
<
FhjwQuestionDTO
>>().
ok
(
data
);
return
new
Result
<
List
<
FhjwQuestionDTO
>>().
ok
(
data
);
...
...
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