提交代码

This commit is contained in:
2025-02-18 15:12:04 +08:00
parent d8cd15555d
commit 1697e69054
12 changed files with 277 additions and 86 deletions
+48
View File
@@ -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;