五环安全月报
This commit is contained in:
parent
640d07d964
commit
90b11e22d6
|
@ -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];
|
|
@ -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">
|
||||
|
|
Loading…
Reference in New Issue