20250908 焊接统计分析表
This commit is contained in:
@@ -332199,6 +332199,8 @@ namespace Model
|
||||
|
||||
private string _DataSource;
|
||||
|
||||
private System.Nullable<System.DateTime> _CompletionDate;
|
||||
|
||||
private EntitySet<Check_CheckDayDetail> _Check_CheckDayDetail;
|
||||
|
||||
private EntitySet<Check_SupervisionNotice> _Check_SupervisionNotice;
|
||||
@@ -332235,6 +332237,8 @@ namespace Model
|
||||
partial void OnSupervisorUnitIdChanged();
|
||||
partial void OnDataSourceChanging(string value);
|
||||
partial void OnDataSourceChanged();
|
||||
partial void OnCompletionDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCompletionDateChanged();
|
||||
#endregion
|
||||
|
||||
public ProjectData_WorkArea()
|
||||
@@ -332456,6 +332460,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompletionDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> CompletionDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompletionDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompletionDate != value))
|
||||
{
|
||||
this.OnCompletionDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompletionDate = value;
|
||||
this.SendPropertyChanged("CompletionDate");
|
||||
this.OnCompletionDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Check_CheckDayDetail_ProjectData_WorkArea", Storage="_Check_CheckDayDetail", ThisKey="WorkAreaId", OtherKey="CheckArea", DeleteRule="NO ACTION")]
|
||||
public EntitySet<Check_CheckDayDetail> Check_CheckDayDetail
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user