1
0

feat(xbatis): 完成xbatis框架的适配

This commit is contained in:
2026-01-07 16:21:00 +08:00
parent 919664ba84
commit 8fc53e6fda
18 changed files with 974 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
create table if not exists Company
(
id bigint primary key,
name varchar(255) not null,
members int not null,
created_time timestamp not null,
modified_time timestamp not null
);
create table if not exists Employee
(
id bigint primary key,
name varchar(255) not null,
age int not null,
created_time timestamp not null,
modified_time timestamp not null
);