Commit 40e27065 authored by 赵啸非's avatar 赵啸非

更改上传文件大小限制

parent c0109c8a
...@@ -52,11 +52,19 @@ public class SyncUserTaskImpl implements ITaskExcuteService { ...@@ -52,11 +52,19 @@ public class SyncUserTaskImpl implements ITaskExcuteService {
BeanUtils.copyProperties(user, userEntity, new String[]{"id","lastLoginTime", "lastLoginAddress"}); BeanUtils.copyProperties(user, userEntity, new String[]{"id","lastLoginTime", "lastLoginAddress"});
log.info("新增:{}", JSON.toJSONString(userEntity)); log.info("新增:{}", JSON.toJSONString(userEntity));
userService.getUserDao().insert(userEntity); userService.getUserDao().insert(userEntity);
}else {
//更新基本信息
UserEntity userEntity = new UserEntity();
BeanUtils.copyProperties(user, userEntity, new String[]{"loginPwd","userType","status","lastLoginTime", "lastLoginAddress"});
log.info("更新:{}", JSON.toJSONString(userEntity));
userService.getUserDao().update(userEntity);
} }
}); });
} }
log.info("syncUserResp:{}", JSON.toJSONString(resp)); // log.info("syncUserResp:{}", JSON.toJSONString(resp));
} }
......
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