# SpringBoot-Template **Repository Path**: love-java-love-gyy/spring-boot-template ## Basic Information - **Project Name**: SpringBoot-Template - **Description**: SpringBoot项目基础模板,持久层使用Spring Data JPA - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-31 - **Last Updated**: 2022-06-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 工程简介 * 持久层使用Spring Data JPA # 数据库 - test ### 用户表 ```mysql CREATE TABLE `user` ( `id` varchar(40) NOT NULL COMMENT '主键id,无意义', `name` varchar(20) DEFAULT NULL COMMENT '姓名', `age` int(11) DEFAULT NULL COMMENT '年龄', `gender` varchar(10) DEFAULT NULL COMMENT '性别', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=gbk ```