This commit is contained in:
jackchenyang
2024-05-26 08:28:18 +08:00
parent c873aecca8
commit 914f20c238
12 changed files with 548 additions and 32 deletions
+24
View File
@@ -22792,6 +22792,8 @@ namespace Model
private System.Nullable<System.DateTime> _ReportTime;
private string _WorkAreaId;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -22814,6 +22816,8 @@ namespace Model
partial void OnCheckTimeChanged();
partial void OnReportTimeChanging(System.Nullable<System.DateTime> value);
partial void OnReportTimeChanged();
partial void OnWorkAreaIdChanging(string value);
partial void OnWorkAreaIdChanged();
#endregion
public PMI_DelegationDetails()
@@ -23001,6 +23005,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaId", DbType="NVarChar(50)")]
public string WorkAreaId
{
get
{
return this._WorkAreaId;
}
set
{
if ((this._WorkAreaId != value))
{
this.OnWorkAreaIdChanging(value);
this.SendPropertyChanging();
this._WorkAreaId = value;
this.SendPropertyChanged("WorkAreaId");
this.OnWorkAreaIdChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;