Commit 5d67df15 by 墨竹

Merge remote-tracking branch 'origin/fixbug_0308' into fixbug_0308

parents 9627dd28 6dde66fd
...@@ -688,9 +688,9 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA ...@@ -688,9 +688,9 @@ public class MemberUnionidRelatedApiServiceImpl implements MemberUnionidRelatedA
RedisUtil.unlock(lockKey); RedisUtil.unlock(lockKey);
return dto; return dto;
} else { } else {
RedisUtil.setCache(key, dto, 60L);
String memberUnionidRelatedId = memberUnionRelatedService.addMemberUnionidRelated(dto); String memberUnionidRelatedId = memberUnionRelatedService.addMemberUnionidRelated(dto);
dto.setMemberUnionidRelatedId(memberUnionidRelatedId); dto.setMemberUnionidRelatedId(memberUnionidRelatedId);
RedisUtil.setCache(key, dto, 60L);
RedisUtil.unlock(lockKey); RedisUtil.unlock(lockKey);
return null; return null;
} }
......
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