AppUserInfoDO user = appUserInfoMapper.getUser(userId);
AppUserVO userVO = new AppUserVO();
BeanUtils.copyProperties(user, userVO);
BeanUtils需要导入的类
import org.springframework.beans.BeanUtils;
AppUserInfoDO user = appUserInfoMapper.getUser(userId);
AppUserVO userVO = new AppUserVO();
BeanUtils.copyProperties(user, userVO);
BeanUtils需要导入的类
import org.springframework.beans.BeanUtils;