This commit is contained in:
2026-04-10 17:55:49 +08:00
parent 0d2b67dc72
commit 0dcdd1474a
37 changed files with 1550 additions and 156 deletions
+48
View File
@@ -24752,6 +24752,8 @@ namespace Model
private string _SubjectUnitWebUrl;
private System.Nullable<bool> _IsAutoFetch;
private EntitySet<Accident_AccidentHandle> _Accident_AccidentHandle;
private EntitySet<Accident_AccidentPersonRecord> _Accident_AccidentPersonRecord;
@@ -25196,6 +25198,8 @@ namespace Model
partial void OnSubjectUnitApiUrlChanged();
partial void OnSubjectUnitWebUrlChanging(string value);
partial void OnSubjectUnitWebUrlChanged();
partial void OnIsAutoFetchChanging(System.Nullable<bool> value);
partial void OnIsAutoFetchChanged();
#endregion
public Base_Project()
@@ -26134,6 +26138,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsAutoFetch", DbType="Bit")]
public System.Nullable<bool> IsAutoFetch
{
get
{
return this._IsAutoFetch;
}
set
{
if ((this._IsAutoFetch != value))
{
this.OnIsAutoFetchChanging(value);
this.SendPropertyChanging();
this._IsAutoFetch = value;
this.SendPropertyChanged("IsAutoFetch");
this.OnIsAutoFetchChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Base_Project", Storage="_Accident_AccidentHandle", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")]
public EntitySet<Accident_AccidentHandle> Accident_AccidentHandle
{
@@ -224908,6 +224932,8 @@ namespace Model
private string _AwardType;
private System.Nullable<System.DateTime> _AwardYear;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -224942,6 +224968,8 @@ namespace Model
partial void OnIsUpdateChanged();
partial void OnAwardTypeChanging(string value);
partial void OnAwardTypeChanged();
partial void OnAwardYearChanging(System.Nullable<System.DateTime> value);
partial void OnAwardYearChanged();
#endregion
public QCManage_QCGroupRegistration()
@@ -225249,6 +225277,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_AwardYear", DbType="DateTime")]
public System.Nullable<System.DateTime> AwardYear
{
get
{
return this._AwardYear;
}
set
{
if ((this._AwardYear != value))
{
this.OnAwardYearChanging(value);
this.SendPropertyChanging();
this._AwardYear = value;
this.SendPropertyChanged("AwardYear");
this.OnAwardYearChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;