修改移交
This commit is contained in:
@@ -392613,6 +392613,8 @@ namespace Model
|
||||
|
||||
private string _Describe;
|
||||
|
||||
private string _SystemNo;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -392643,6 +392645,8 @@ namespace Model
|
||||
partial void OnActualFinishedDateChanged();
|
||||
partial void OnDescribeChanging(string value);
|
||||
partial void OnDescribeChanged();
|
||||
partial void OnSystemNoChanging(string value);
|
||||
partial void OnSystemNoChanged();
|
||||
#endregion
|
||||
|
||||
public Transfer_LHCSystemList()
|
||||
@@ -392910,6 +392914,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SystemNo", DbType="NVarChar(50)")]
|
||||
public string SystemNo
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SystemNo;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SystemNo != value))
|
||||
{
|
||||
this.OnSystemNoChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._SystemNo = value;
|
||||
this.SendPropertyChanged("SystemNo");
|
||||
this.OnSystemNoChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user