PMP
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user