修改接口

This commit is contained in:
2023-05-09 18:52:01 +08:00
parent 8a6e831736
commit 2b8ff1a35c
4 changed files with 235 additions and 0 deletions
@@ -0,0 +1,7 @@
/****** Object: Index [NonClusteredIndex-CostControlId-ProjectId] Script Date: 2023/5/6 9:14:19 ******/
CREATE NONCLUSTERED INDEX [NonClusteredIndex-CostControlId-ProjectId] ON [dbo].[WBS_CostControl]
(
[CostControlId] ASC,
[ProjectId] 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
@@ -0,0 +1,3 @@
--ADD BY GaoFei 2023-05-09
1、增加进度数据表索引
--END