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

@ -28,6 +28,7 @@ create table test_leave
end_date datetime2 not null,
leave_days int not null,
remark nvarchar(255),
status nvarchar(255),
create_dept bigint,
create_by bigint,
create_time datetime2,
@ -61,6 +62,9 @@ go
exec sp_addextendedproperty 'MS_Description', N'请假原因', 'SCHEMA', 'dbo', 'TABLE', 'test_leave', 'COLUMN', 'remark'
go
exec sp_addextendedproperty 'MS_Description', N'状态', 'SCHEMA', 'dbo', 'TABLE', 'test_leave', 'COLUMN', 'status'
go
exec sp_addextendedproperty 'MS_Description', N'创建部门', 'SCHEMA', 'dbo', 'TABLE', 'test_leave', 'COLUMN',
'create_dept'
go