This commit is contained in:
2025-06-13 22:47:09 +08:00
parent f62c6618a1
commit 0941b1f159
4 changed files with 60 additions and 12 deletions
+48
View File
@@ -182712,6 +182712,10 @@ namespace Model
private System.Nullable<System.DateTime> _CreateDate;
private string _VideoAccount;
private string _VideoPassword;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -182740,6 +182744,10 @@ namespace Model
partial void OnRemarkChanged();
partial void OnCreateDateChanging(System.Nullable<System.DateTime> value);
partial void OnCreateDateChanged();
partial void OnVideoAccountChanging(string value);
partial void OnVideoAccountChanged();
partial void OnVideoPasswordChanging(string value);
partial void OnVideoPasswordChanged();
#endregion
public HSSE_TowerCrane()
@@ -182987,6 +182995,46 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_VideoAccount", DbType="NVarChar(50)")]
public string VideoAccount
{
get
{
return this._VideoAccount;
}
set
{
if ((this._VideoAccount != value))
{
this.OnVideoAccountChanging(value);
this.SendPropertyChanging();
this._VideoAccount = value;
this.SendPropertyChanged("VideoAccount");
this.OnVideoAccountChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_VideoPassword", DbType="NVarChar(50)")]
public string VideoPassword
{
get
{
return this._VideoPassword;
}
set
{
if ((this._VideoPassword != value))
{
this.OnVideoPasswordChanging(value);
this.SendPropertyChanging();
this._VideoPassword = value;
this.SendPropertyChanged("VideoPassword");
this.OnVideoPasswordChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;