You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
2991692032 af5b8caf9e
mybatis
2 months ago
demo mybatis 2 months ago
moz-todo-vue todo List 2 months ago
.gitattributes backend init 2 months ago
.gitignore backend init 2 months ago
README.md mybatis 2 months ago
todo-list.png 前段 todo-list界面 2 months ago

README.md

the_second_work

在本地配置mysql环境并创建userservice数据库,在application.yml配置文件中设置数据库账号密码,根据下面sql语句建表:

CREATE TABLE user (
    id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    name VARCHAR(255) NOT NULL,
    age INT NOT NULL
);