add 添加业务表状态更新示例

This commit is contained in:
gssong
2024-06-02 18:24:52 +08:00
parent 44bef2d6d9
commit 512b5204bc
12 changed files with 37 additions and 6 deletions

View File

@ -29,6 +29,7 @@ create table test_leave
end_date timestamp,
leave_days bigint,
remark varchar(255),
status varchar(255),
create_dept bigint,
create_by bigint,
create_time timestamp,
@ -49,6 +50,8 @@ comment on column test_leave.end_date is '结束时间';
comment on column test_leave.remark is '请假原因';
comment on column test_leave.status is '状态';
comment on column test_leave.create_dept is '创建部门';
comment on column test_leave.create_by is '创建者';