对象参数转换
@Log4j public final class ParamConvertUtils { /** * copy对象属性 * * @param source * @return */ public static void convertParam(Object target, Object source) { if (source != null) { BeanUtils.copyProperties(source, target); } } }