diff --git a/DataBase/版本日志/SGGLDB_WH_2023-12-25.sql b/DataBase/版本日志/SGGLDB_WH_2023-12-25.sql index 98c8fc4d..1f0daedf 100644 --- a/DataBase/版本日志/SGGLDB_WH_2023-12-25.sql +++ b/DataBase/版本日志/SGGLDB_WH_2023-12-25.sql @@ -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 \ No newline at end of file +truncate table PreRun_SubInstrumentSelect +GO \ No newline at end of file diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index 999d966a..c77eac42 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -267081,6 +267081,8 @@ namespace Model private System.Nullable _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 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 _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 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;