// 设置分组关系
Long groupId = jsonObject.getLong("groupId");
if(groupId != null) {
GroupRelation group = (GroupRelation) getBaseManager().get(GroupRelation.class, groupId);
if(group == null) {
throw new IouserException("债务人关系->分组为空");
}
user.setGroup(group);
}
getBaseManager().update(user);
print(response, RESBONSE_SUCCESS);