This commit is contained in:
jsh
2025-09-29 19:50:02 +08:00
parent 7938018852
commit fe06b792b3
3 changed files with 17 additions and 2 deletions

0
db/data.sql Normal file
View File

14
db/schema.sql Normal file
View File

@@ -0,0 +1,14 @@
CREATE TABLE nexus.goals (
id INT auto_increment NOT NULL,
status varchar(100) NULL,
create_time DATETIME NULL,
update_time DATETIME NULL,
name varchar(100) NOT NULL,
tag varchar(100) NULL,
detail varchar(100) NULL,
CONSTRAINT goals_pk PRIMARY KEY (id)
)
ENGINE=InnoDB
DEFAULT CHARSET=utf8mb4
COLLATE=utf8mb4_0900_ai_ci
COMMENT='目标管理表';

View File

@@ -35,8 +35,9 @@
<artifactId>spring-boot-starter-data-redis</artifactId> <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>com.baomidou</groupId>
<artifactId>spring-boot-starter-jooq</artifactId> <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
<version>3.5.14</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>