1.update
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -67,7 +67,7 @@ public class UserWeixinServiceImpl implements UserWeixinService { | ... | @@ -67,7 +67,7 @@ public class UserWeixinServiceImpl implements UserWeixinService { |
67 | @Override | 67 | @Override |
68 | @Transactional(rollbackFor = Exception.class) | 68 | @Transactional(rollbackFor = Exception.class) |
69 | public void updateTime(UserWeixin resources) { | 69 | public void updateTime(UserWeixin resources) { |
70 | log.info("updateTime ==>> resources ==>> [{}]",resources); | 70 | log.info("updateTime ==>> resources ==>> [{}]", resources); |
71 | String appid = resources.getAppid(); | 71 | String appid = resources.getAppid(); |
72 | String openid = resources.getOpenid(); | 72 | String openid = resources.getOpenid(); |
73 | UserWeixin userWeixin = UserWeixinRepository.findFirstByAppidAndOpenid(appid,openid).orElseGet(UserWeixin::new); | 73 | UserWeixin userWeixin = UserWeixinRepository.findFirstByAppidAndOpenid(appid,openid).orElseGet(UserWeixin::new); | ... | ... |
-
Please register or sign in to post a comment