20231206新增获取全部安全巡检接口

This commit is contained in:
2023-12-06 14:41:12 +08:00
parent 88d09e2602
commit 4ba87f6ffd
6 changed files with 178 additions and 19 deletions
@@ -0,0 +1,10 @@
/****** Object: Index [NonClusteredIndex-20231205-165427] Script Date: 2023/12/5 16:55:24 ******/
CREATE NONCLUSTERED INDEX [NonClusteredIndex-20231205-165427] ON [dbo].[HSSE_Hazard_HazardRegister]
(
[ProjectId] ASC,
[states] ASC,
[CheckTime] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO