From dd83f0dc0cd178c190b703bcd282e3c2e9d4e73a Mon Sep 17 00:00:00 2001 From: songgaoshuai <1742057357@qq.com> Date: Mon, 4 Dec 2023 18:12:42 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E8=B0=83=E6=95=B4sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script/sql/flowable.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/sql/flowable.sql b/script/sql/flowable.sql index 5a0f13300..4713ab11d 100644 --- a/script/sql/flowable.sql +++ b/script/sql/flowable.sql @@ -22,8 +22,8 @@ create table test_leave ( id bigint not null comment '主键', leave_type varchar(255) not null comment '请假类型', - startDate datetime not null comment '开始时间', - endDate datetime not null comment '结束时间', + start_date datetime not null comment '开始时间', + end_date datetime not null comment '结束时间', leave_days int(10) not null comment '请假天数', remark varchar(255) null comment '请假原因', create_dept bigint null comment '创建部门',