Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
Z
zion
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
1
合并请求
1
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
zhengfg
zion
Commits
d09eb45b
提交
d09eb45b
authored
1月 10, 2020
作者:
zgy
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
优化点赞标识
上级
5ab04e81
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
6 行增加
和
7 行删除
+6
-7
ShopifyController.java
...diaoyun/zion/chinafrica/controller/ShopifyController.java
+6
-6
TbCfItemCommentServiceImpl.java
...n/chinafrica/service/impl/TbCfItemCommentServiceImpl.java
+0
-1
没有找到文件。
src/main/java/com/diaoyun/zion/chinafrica/controller/ShopifyController.java
浏览文件 @
d09eb45b
...
...
@@ -93,10 +93,10 @@ public class ShopifyController {
*/
@ApiOperation
(
value
=
"查询商品评论"
)
@GetMapping
(
"/querylastcomment"
)
public
Result
queryLastComment
(
@ApiParam
(
"商品ID"
)
@RequestParam
(
"itemId"
)
String
itemId
,
@ApiParam
(
"商品ID"
)
@RequestParam
(
"userId"
)
String
userId
)
{
public
Result
queryLastComment
(
@ApiParam
(
"商品ID"
)
@RequestParam
(
value
=
"itemId"
)
String
itemId
,
@ApiParam
(
"商品ID"
)
@RequestParam
(
value
=
"userId"
,
required
=
false
)
String
userId
)
{
return
tbCfItemCommentService
.
queryLastComment
(
itemId
,
userId
);
return
tbCfItemCommentService
.
queryLastComment
(
itemId
,
userId
);
}
/**
...
...
@@ -109,11 +109,11 @@ public class ShopifyController {
*/
@ApiOperation
(
value
=
"查看更多评论"
)
@GetMapping
(
"/querycomments"
)
public
Result
queryComments
(
@ApiParam
(
"商品ID"
)
@RequestParam
(
"itemId"
)
String
itemId
,
public
Result
queryComments
(
@ApiParam
(
"商品ID"
)
@RequestParam
(
value
=
"itemId"
)
String
itemId
,
@ApiParam
(
value
=
"页数 默认1"
)
@RequestParam
(
value
=
"pageNum"
,
defaultValue
=
"1"
)
Integer
pageNum
,
@ApiParam
(
value
=
"每页大小 默认10"
)
@RequestParam
(
value
=
"pageSize"
,
defaultValue
=
"10"
)
Integer
pageSize
,
@ApiParam
(
"商品ID"
)
@RequestParam
(
"userId"
)
String
userId
)
{
return
tbCfItemCommentService
.
querycomments
(
itemId
,
pageNum
,
pageSize
,
userId
);
@ApiParam
(
"商品ID"
)
@RequestParam
(
value
=
"userId"
,
required
=
false
)
String
userId
)
{
return
tbCfItemCommentService
.
querycomments
(
itemId
,
pageNum
,
pageSize
,
userId
);
}
/**
...
...
src/main/java/com/diaoyun/zion/chinafrica/service/impl/TbCfItemCommentServiceImpl.java
浏览文件 @
d09eb45b
...
...
@@ -217,7 +217,6 @@ public class TbCfItemCommentServiceImpl implements TbCfItemCommentService {
try
{
String
give_like
=
(
String
)
redisCache
.
get
(
KeyConstant
.
GIVE_LIKE
+
userId
+
itemId
+
commentId
);
System
.
err
.
println
(
KeyConstant
.
GIVE_LIKE
+
userId
+
itemId
+
commentId
);
TbCfItemCommentEntity
comment
=
tbCfItemCommentDao
.
queryObject
(
commentId
);
Long
likeNum
=
comment
.
getLikeNum
();
if
(!
StringUtils
.
isBlank
(
give_like
)
&&
KeyConstant
.
YES
.
equals
(
give_like
))
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论