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