修改移交

This commit is contained in:
2024-07-29 18:06:25 +08:00
parent aa8fe6b2b7
commit eb8003142c
26 changed files with 716 additions and 28 deletions
+24
View File
@@ -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;