This commit is contained in:
2024-06-20 17:12:59 +08:00
parent 8b222bd7c3
commit 6b59df065d
31 changed files with 1138 additions and 404 deletions
+32 -4
View File
@@ -29,6 +29,10 @@ 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);
@@ -11772,7 +11776,7 @@ namespace Model
private string _RepairRecordId;
private System.Nullable<int> _BatchOrder;
private System.Nullable<bool> _BatchOrder;
private System.Nullable<bool> _IsCompletedPoint;
@@ -11782,6 +11786,8 @@ namespace Model
private string _QTAudit;
private System.Nullable<System.DateTime> _EnterDate;
private EntitySet<Batch_BatchTrustItem> _Batch_BatchTrustItem;
private EntityRef<Pipeline_WeldJoint> _Pipeline_WeldJoint;
@@ -11832,7 +11838,7 @@ namespace Model
partial void OnIsAuditChanged();
partial void OnRepairRecordIdChanging(string value);
partial void OnRepairRecordIdChanged();
partial void OnBatchOrderChanging(System.Nullable<int> value);
partial void OnBatchOrderChanging(System.Nullable<bool> value);
partial void OnBatchOrderChanged();
partial void OnIsCompletedPointChanging(System.Nullable<bool> value);
partial void OnIsCompletedPointChanged();
@@ -11842,6 +11848,8 @@ namespace Model
partial void OnGLGSAuditChanged();
partial void OnQTAuditChanging(string value);
partial void OnQTAuditChanged();
partial void OnEnterDateChanging(System.Nullable<System.DateTime> value);
partial void OnEnterDateChanged();
#endregion
public Batch_PointBatchItem()
@@ -12260,8 +12268,8 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BatchOrder", DbType="Int")]
public System.Nullable<int> BatchOrder
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_BatchOrder", DbType="Bit")]
public System.Nullable<bool> BatchOrder
{
get
{
@@ -12360,6 +12368,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_EnterDate", DbType="DateTime")]
public System.Nullable<System.DateTime> EnterDate
{
get
{
return this._EnterDate;
}
set
{
if ((this._EnterDate != value))
{
this.OnEnterDateChanging(value);
this.SendPropertyChanging();
this._EnterDate = value;
this.SendPropertyChanged("EnterDate");
this.OnEnterDateChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Batch_BatchTrustItem_Batch_PointBatchItem", Storage="_Batch_BatchTrustItem", ThisKey="PointBatchItemId", OtherKey="PointBatchItemId", DeleteRule="NO ACTION")]
public EntitySet<Batch_BatchTrustItem> Batch_BatchTrustItem
{