1
0

feat(eq): 完成easy-query框架的适配

This commit is contained in:
2026-01-20 18:47:08 +08:00
parent 1b48081d5b
commit c839dfc4e3
15 changed files with 955 additions and 0 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 default current_timestamp(),
modified_time timestamp not null default current_timestamp() on update current_timestamp()
);
create table if not exists Employee
(
id bigint primary key,
name varchar(255) not null,
age int not null,
created_time timestamp not null default current_timestamp(),
modified_time timestamp not null default current_timestamp() on update current_timestamp()
);