提交代码

This commit is contained in:
2023-12-27 14:27:55 +08:00
parent 88b4e488a8
commit 3aeaad900c
2 changed files with 57 additions and 3 deletions
@@ -2,18 +2,23 @@ delete Sys_Menu where MenuId='E673FC27-74F1-479C-8DE1-950183566725'
delete Sys_Menu where MenuId='FAD7BF9B-B08A-473B-BEB9-CCAC3E5EA130'
delete Sys_Menu where MenuId='4822760B-395B-4979-B547-EA0D715C8A2C'
delete Sys_Menu where MenuId='7803218A-3E94-4715-814A-951CF2474E7C'
GO
INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Icon,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)VALUES('4822760B-395B-4979-B547-EA0D715C8A2C','三查四定提出人处理',null,'TestRun/BeforeTestRun/FourDecisionProposerHandle.aspx',16,'AD6E08B6-5571-4FFB-BDBE-9E6811770BD6','Menu_TestRun',0,1,1)
INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Icon,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)VALUES('E673FC27-74F1-479C-8DE1-950183566725','三查四定责任人销项',null,'TestRun/BeforeTestRun/FourDecisionResponsibilityConfirm.aspx',17,'AD6E08B6-5571-4FFB-BDBE-9E6811770BD6','Menu_TestRun',0,1,1)
INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Icon,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)VALUES('7803218A-3E94-4715-814A-951CF2474E7C','三查四定提出人确认',null,'TestRun/BeforeTestRun/FourDecisionProposerConfirm.aspx',18,'AD6E08B6-5571-4FFB-BDBE-9E6811770BD6','Menu_TestRun',0,1,1)
INSERT INTO dbo.Sys_Menu(MenuId,MenuName,Icon,Url,SortIndex,SuperMenu,MenuType,IsOffice,IsEnd,IsUsed)VALUES('FAD7BF9B-B08A-473B-BEB9-CCAC3E5EA130','三查四定确认',null,'TestRun/BeforeTestRun/FourDecisionOtherConfirm.aspx',19,'AD6E08B6-5571-4FFB-BDBE-9E6811770BD6','Menu_TestRun',0,1,1)
GO
--提出人/责任人处理状态(0:待提交1:提出人待处理2:提出人处理退回3:责任人待确认4:责任人退回5:责任人通过提出人待处理6:提出人退回7:提出人确认通过)
alter table PreRun_SubThreeChecksFourDecision add ResponsibilityProposeSatate int null
GO
--提出人处理时间
alter table PreRun_SubThreeChecksFourDecision add ProposeHandleData datetime NULL
GO
--三查四定编码
alter table PreRun_SubThreeChecksFourDecision add FourDecisionCode varchar(20) NULL
GO
alter table PreRun_SubSysWorkPackage add SystemId varchar(50) null
GO
--数据清理
truncate table PreRun_SubThreeChecksFourDecision
truncate table PreRun_DecisionConfirmRecords
@@ -22,4 +27,5 @@ truncate table PreRun_SubPropertySelect
truncate table PreRun_TechnologySysPiping
truncate table PreRun_SubTechnologySelect
truncate table PreRun_InstrumentSysPiping
truncate table PreRun_SubInstrumentSelect
truncate table PreRun_SubInstrumentSelect
GO
+48
View File
@@ -267081,6 +267081,8 @@ namespace Model
private System.Nullable<int> _Sort;
private string _SystemId;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -267101,6 +267103,8 @@ namespace Model
partial void OnAddTimeChanged();
partial void OnSortChanging(System.Nullable<int> value);
partial void OnSortChanged();
partial void OnSystemIdChanging(string value);
partial void OnSystemIdChanged();
#endregion
public PreRun_SubSysWorkPackage()
@@ -267268,6 +267272,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SystemId", DbType="VarChar(50)")]
public string SystemId
{
get
{
return this._SystemId;
}
set
{
if ((this._SystemId != value))
{
this.OnSystemIdChanging(value);
this.SendPropertyChanging();
this._SystemId = value;
this.SendPropertyChanged("SystemId");
this.OnSystemIdChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -267587,6 +267611,8 @@ namespace Model
private System.Nullable<int> _Sort;
private string _FourDecisionCode;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -267653,6 +267679,8 @@ namespace Model
partial void OnAddTimeChanged();
partial void OnSortChanging(System.Nullable<int> value);
partial void OnSortChanged();
partial void OnFourDecisionCodeChanging(string value);
partial void OnFourDecisionCodeChanged();
#endregion
public PreRun_SubThreeChecksFourDecision()
@@ -268280,6 +268308,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FourDecisionCode", DbType="VarChar(20)")]
public string FourDecisionCode
{
get
{
return this._FourDecisionCode;
}
set
{
if ((this._FourDecisionCode != value))
{
this.OnFourDecisionCodeChanging(value);
this.SendPropertyChanging();
this._FourDecisionCode = value;
this.SendPropertyChanged("FourDecisionCode");
this.OnFourDecisionCodeChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;