25 lines
516 B
Transact-SQL
25 lines
516 B
Transact-SQL
|
|
|
|
alter table Information_MillionsMonthlyReportItem add UnitId nvarchar(50) NULL;
|
|
|
|
GO
|
|
alter table Information_MillionsMonthlyReportItem add ProjectId nvarchar(50) NULL;
|
|
|
|
GO
|
|
|
|
--标准版月报
|
|
update Sys_Menu
|
|
set Url='ZHGL/Information/MillionsMonthlyReport.aspx'
|
|
where url like '%ZHGL/Information/MillionsMonthlyReportZJ.aspx%'
|
|
|
|
Go
|
|
|
|
--重机版月报 2026.04.30,建投改用重机版月报
|
|
update Sys_Menu
|
|
set Url='ZHGL/Information/MillionsMonthlyReportZJ.aspx'
|
|
where url like '%ZHGL/Information/MillionsMonthlyReport.aspx%'
|
|
|
|
Go
|
|
|
|
|