mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-24 07:19:46 +08:00
add 添加业务表状态更新示例
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user