|
|
@@ -303,7 +303,7 @@ public class CommonServiceImpl implements CommonService {
|
|
|
public User addUser(User user) {
|
|
|
Result<User> result = userFeignClient.add(user.getCreater() + "", user);
|
|
|
if (verifyResult(result)) {
|
|
|
- log.info("addUser result:{}", JSON.toJSONString(result));
|
|
|
+ log.info("CommonServiceImpl addUser result:{}", JSON.toJSONString(result));
|
|
|
return result.getData();
|
|
|
}
|
|
|
return null;
|
|
|
@@ -312,6 +312,7 @@ public class CommonServiceImpl implements CommonService {
|
|
|
@Override
|
|
|
public Boolean updateUser(User user) {
|
|
|
Result<Boolean> result = userFeignClient.update(user.getCreater() + "", user);
|
|
|
+ log.info("CommonServiceImpl updateUser result:{}", JSON.toJSONString(result));
|
|
|
if (verifyResult(result)) {
|
|
|
return result.getData();
|
|
|
}
|