提交试车代码

This commit is contained in:
2023-11-06 11:16:46 +08:00
parent 5a130a619b
commit 0b84177640
30 changed files with 2021 additions and 146 deletions
@@ -0,0 +1,18 @@
--老数据清理
truncate table PreRun_SubInspectTerm
truncate table PreRun_SubInspectTermItem
truncate table PreRun_InspectTailTerm
truncate table PreRun_InspectTermApproveRecords
GO
delete Sys_Menu where MenuId='AF88737F-D665-4C81-99D5-A07A8910C1E0'
INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Icon,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)VALUES('AF88737F-D665-4C81-99D5-A07A8910C1E0','检查表流转全部通过',null,'TestRun/BeforeTestRun/InspectWanderAboutAllPassList.aspx',14,'AD6E08B6-5571-4FFB-BDBE-9E6811770BD6','Menu_TestRun',0,1,1)
GO
--是否统一流转0:否1:是
alter table PreRun_SubInspectTerm add IsUnifyWanderAbout int null
GO
--统一流转时间
alter table PreRun_SubInspectTerm add UnifyWanderAboutData datetime null
GO
--统一流转审核意见
alter table PreRun_SubInspectTerm add UnifyWanderAboutOpinion varchar(max) null
GO