CNCEC_SUBQHSE_WUHUAN/DataBase/版本日志/SGGLDB_WH_2023-10-31.sql

17 lines
591 B
Transact-SQL

--主表增加出差天数
alter table CQMS_Performance add OutDay int null;
GO
--主表增加工作负荷
alter table CQMS_Performance add Workloads decimal(18, 2) null;
GO
--主表增加工作范围
alter table CQMS_Performance add WorkRange nvarchar(200) null;
GO
--主表增加打分人
alter table CQMS_Performance add ScorMan nvarchar(50) null;
GO
--添加菜单施工管理绩效数据
insert into sys_menu(MenuId,MenuName,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)
values('F2133BD6-C786-407A-AD6F-3EEF613229A8','施工管理绩效数据','ZHGL/Performance/PerformanceAllData.aspx',150,
'0','Menu_ZHGL','1','1','1')
GO