Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Litemall
Commits
e567713f
Commit
e567713f
authored
Apr 01, 2018
by
Junling Bu
Browse files
fix[litemall-wx]: 删除没用的代码。
parent
cfae40ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
litemall-wx-api/src/main/java/org/linlinjava/litemall/wx/web/WxCommentController.java
View file @
e567713f
...
...
@@ -73,18 +73,10 @@ public class WxCommentController {
@RequestMapping
(
"list"
)
public
Object
list
(
Byte
typeId
,
Integer
valueId
,
Integer
showType
,
@RequestParam
(
value
=
"page"
,
defaultValue
=
"0"
)
Integer
page
,
@RequestParam
(
value
=
"size"
,
defaultValue
=
"10"
)
Integer
size
,
String
sort
,
String
order
)
{
@RequestParam
(
value
=
"size"
,
defaultValue
=
"10"
)
Integer
size
)
{
if
(
typeId
==
null
||
valueId
==
null
||
showType
==
null
){
return
ResponseUtil
.
fail401
();
}
if
(
sort
==
null
){
sort
=
""
;
}
if
(
order
==
null
){
order
=
""
;
}
List
<
LitemallComment
>
commentList
=
commentService
.
query
(
typeId
,
valueId
,
showType
,
page
,
size
);
int
count
=
commentService
.
count
(
typeId
,
valueId
,
showType
,
page
,
size
);
...
...
Write
Preview
Supports
Markdown
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