提交代码
This commit is contained in:
@@ -104762,6 +104762,10 @@ namespace Model
|
||||
|
||||
private string _MainUnitCheckPerson;
|
||||
|
||||
private System.Nullable<bool> _IsLarge;
|
||||
|
||||
private System.Nullable<bool> _IsSuperLarge;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
@@ -104800,6 +104804,10 @@ namespace Model
|
||||
partial void OnMainUnitDutyPersonChanged();
|
||||
partial void OnMainUnitCheckPersonChanging(string value);
|
||||
partial void OnMainUnitCheckPersonChanged();
|
||||
partial void OnIsLargeChanging(System.Nullable<bool> value);
|
||||
partial void OnIsLargeChanged();
|
||||
partial void OnIsSuperLargeChanging(System.Nullable<bool> value);
|
||||
partial void OnIsSuperLargeChanged();
|
||||
#endregion
|
||||
|
||||
public HSSE_ConstructionRisk()
|
||||
@@ -105147,6 +105155,46 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsLarge", DbType="Bit")]
|
||||
public System.Nullable<bool> IsLarge
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsLarge;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsLarge != value))
|
||||
{
|
||||
this.OnIsLargeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsLarge = value;
|
||||
this.SendPropertyChanged("IsLarge");
|
||||
this.OnIsLargeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsSuperLarge", DbType="Bit")]
|
||||
public System.Nullable<bool> IsSuperLarge
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsSuperLarge;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsSuperLarge != value))
|
||||
{
|
||||
this.OnIsSuperLargeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsSuperLarge = value;
|
||||
this.SendPropertyChanged("IsSuperLarge");
|
||||
this.OnIsSuperLargeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user