提交代码

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

View File

@ -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

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;