摘要:
参考 import org.springframework.beans.BeanUtils; BeanUtils.copyProperties(dto1, dto2) // 将 dto1 转换为 dto2 阅读全文
摘要:
一、Mysql表字段转Java实体(sql语句) SELECT concat( '\n/**\n', ' * ', v.column_comment, '\n', ' */\n', 'public ', v.dataType, ' ', v.column_name, ';' ) resultData 阅读全文