IntelliJ IDEA+MyBatis Generator(MBG)+MySQL自动生成实体类和Mapper代码(逆向工程)
一、新建数据表DROPTABLEIFEXISTS`student`;CREATETABLE`student`(`id`int(11)NOTNULLAUTO_INCREMENT,`stu_name`varchar(255)DEFAULTNULL,`stu_age`int(11)DEFAULTNULL,`stu_phone`varchar(255)DEFAULTNULL,`stu_address`va