1121
This commit is contained in:
parent
0fae997ef0
commit
8ea587a495
Binary file not shown.
|
@ -21481,6 +21481,8 @@ namespace Model
|
|||
|
||||
private int _Status;
|
||||
|
||||
private string _ReportNo;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
|
@ -21499,6 +21501,8 @@ namespace Model
|
|||
partial void OnCreatedTimeChanged();
|
||||
partial void OnStatusChanging(int value);
|
||||
partial void OnStatusChanged();
|
||||
partial void OnReportNoChanging(string value);
|
||||
partial void OnReportNoChanged();
|
||||
#endregion
|
||||
|
||||
public PMI_DelegationDetails()
|
||||
|
@ -21646,6 +21650,26 @@ namespace Model
|
|||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="reportNo", Storage="_ReportNo", DbType="NVarChar(50)")]
|
||||
public string ReportNo
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ReportNo;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ReportNo != value))
|
||||
{
|
||||
this.OnReportNoChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ReportNo = value;
|
||||
this.SendPropertyChanged("ReportNo");
|
||||
this.OnReportNoChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
|
Loading…
Reference in New Issue