import org.apache.commons.beanutils.BeanUtils;
//保存数据时先
UserDto userDto = new UserDto();
//实体类
User user = new User() ;
//然后把你传过来的参数用个实体接收。
BeanUtils.copyProperties(userDto , user);
userDto是等待被赋值的对象,user是源对象,将user中属性值赋值的userDto中对应的字段,userDto中有的属性user中必须有,userDto可以有更多属性
参考 https://blog.csdn.net/wzc1991520/article/details/80176679