Commit 269bb643 authored by shiyu's avatar shiyu

根据创建者统计发布的商品

parent 1e1e9c13
...@@ -131,7 +131,7 @@ ...@@ -131,7 +131,7 @@
@project https://github.com/itfsw/mybatis-generator-plugin @project https://github.com/itfsw/mybatis-generator-plugin
--> -->
select select
'true' as QUERYID,
<if test="example.distinct"> <if test="example.distinct">
distinct distinct
</if> </if>
......
...@@ -48,7 +48,7 @@ public class BrowseLogAop { ...@@ -48,7 +48,7 @@ public class BrowseLogAop {
Map<String, Object> paramMap = JsonUtils.toMap(JsonUtils.from(args[0])); Map<String, Object> paramMap = JsonUtils.toMap(JsonUtils.from(args[0]));
long userId = Long.valueOf(String.valueOf(paramMap.get("userId"))); long userId = Long.valueOf(String.valueOf(paramMap.get("userId")));
String id = String.valueOf(paramMap.get("id")); String id = String.valueOf(paramMap.get("id"));
String targetId = null; String targetId;
if (StringUtils.hasLength(id)) { if (StringUtils.hasLength(id)) {
targetId = id; targetId = id;
} else { } else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment