五环安全月报

This commit is contained in:
潘鸿锋 2024-08-26 08:40:19 +08:00
parent 640d07d964
commit 90b11e22d6
2 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,21 @@
--
alter table Manager_MonthReportC
add MonthHdangerCount int null;
alter table Manager_MonthReportC
add MonthHdangerCount int null;
--Manager_HiddenDanger表本月隐患整改情况
CREATE TABLE [dbo].[Manager_HiddenDanger](
[Id] [nvarchar](50) NOT NULL,
[MonthReportId] [nvarchar](50) NULL,
[UnitId] [nvarchar](50) NULL,
[CommonlyNum] [int] NULL,
[MajorNum] [int] NULL,
[ReRate] [nvarchar](50) NULL,
[SortIndex] [int] NULL,
CONSTRAINT [PK_Manager_HiddenDanger] PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY];

View File

@ -19232,7 +19232,7 @@
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v15.0\WebApplications\Microsoft.WebApplication.targets" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v16.0\WebApplications\Microsoft.WebApplication.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">