This commit is contained in:
2026-06-02 17:23:16 +08:00
parent d783458b89
commit 65703941c5
5 changed files with 76 additions and 2 deletions
+48
View File
@@ -297770,6 +297770,10 @@ namespace Model
private string _StLocationName;
private string _StProjectStepName;
private string _StProjectTypeName;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -297842,6 +297846,10 @@ namespace Model
partial void OnPlanEndDateChanged();
partial void OnStLocationNameChanging(string value);
partial void OnStLocationNameChanged();
partial void OnStProjectStepNameChanging(string value);
partial void OnStProjectStepNameChanged();
partial void OnStProjectTypeNameChanging(string value);
partial void OnStProjectTypeNameChanged();
#endregion
public PMP_Project()
@@ -298529,6 +298537,46 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="stProjectStepName", Storage="_StProjectStepName", DbType="NVarChar(200)")]
public string StProjectStepName
{
get
{
return this._StProjectStepName;
}
set
{
if ((this._StProjectStepName != value))
{
this.OnStProjectStepNameChanging(value);
this.SendPropertyChanging();
this._StProjectStepName = value;
this.SendPropertyChanged("StProjectStepName");
this.OnStProjectStepNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="stProjectTypeName", Storage="_StProjectTypeName", DbType="NVarChar(200)")]
public string StProjectTypeName
{
get
{
return this._StProjectTypeName;
}
set
{
if ((this._StProjectTypeName != value))
{
this.OnStProjectTypeNameChanging(value);
this.SendPropertyChanging();
this._StProjectTypeName = value;
this.SendPropertyChanged("StProjectTypeName");
this.OnStProjectTypeNameChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;