This commit is contained in:
2024-06-11 17:27:06 +08:00
parent 9dd993f28e
commit a3ca2594e3
30 changed files with 695 additions and 118 deletions
+48 -4
View File
@@ -29,10 +29,6 @@ namespace Model
#region
partial void OnCreated();
partial void OnCreated()
{
this.CommandTimeout = 600;
}
partial void InsertAttachFile(AttachFile instance);
partial void UpdateAttachFile(AttachFile instance);
partial void DeleteAttachFile(AttachFile instance);
@@ -17733,6 +17729,8 @@ namespace Model
private System.Nullable<bool> _IsComplete;
private string _ReportMan;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -17749,6 +17747,8 @@ namespace Model
partial void OnDailyReportDateChanged();
partial void OnIsCompleteChanging(System.Nullable<bool> value);
partial void OnIsCompleteChanged();
partial void OnReportManChanging(string value);
partial void OnReportManChanged();
#endregion
public Pipeline_DailyReportComplete()
@@ -17876,6 +17876,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReportMan", DbType="NVarChar(50)")]
public string ReportMan
{
get
{
return this._ReportMan;
}
set
{
if ((this._ReportMan != value))
{
this.OnReportManChanging(value);
this.SendPropertyChanging();
this._ReportMan = value;
this.SendPropertyChanged("ReportMan");
this.OnReportManChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -20910,6 +20930,8 @@ namespace Model
private System.Nullable<int> _AuditStatus;
private System.Nullable<bool> _IsSuperQueWelding;
private EntitySet<Batch_BatchTrustItem> _Batch_BatchTrustItem;
private EntitySet<Batch_PointBatchItem> _Batch_PointBatchItem;
@@ -21052,6 +21074,8 @@ namespace Model
partial void OnIsPMIChanged();
partial void OnAuditStatusChanging(System.Nullable<int> value);
partial void OnAuditStatusChanged();
partial void OnIsSuperQueWeldingChanging(System.Nullable<bool> value);
partial void OnIsSuperQueWeldingChanged();
#endregion
public Pipeline_WeldJoint()
@@ -22126,6 +22150,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsSuperQueWelding", DbType="Bit")]
public System.Nullable<bool> IsSuperQueWelding
{
get
{
return this._IsSuperQueWelding;
}
set
{
if ((this._IsSuperQueWelding != value))
{
this.OnIsSuperQueWeldingChanging(value);
this.SendPropertyChanging();
this._IsSuperQueWelding = value;
this.SendPropertyChanged("IsSuperQueWelding");
this.OnIsSuperQueWeldingChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Batch_BatchTrustItem_Pipeline_WeldJoint", Storage="_Batch_BatchTrustItem", ThisKey="WeldJointId", OtherKey="WeldJointId", DeleteRule="NO ACTION")]
public EntitySet<Batch_BatchTrustItem> Batch_BatchTrustItem
{