提交代码

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
+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;