2022-11-03 焊接修改,二次焊口设计增加新增焊口类型
This commit is contained in:
@@ -73282,6 +73282,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<int> _State;
|
||||
|
||||
private string _FlowingSection;
|
||||
|
||||
private EntityRef<Base_TestMedium> _Base_TestMedium;
|
||||
|
||||
private EntitySet<HJGL_Batch_PointBatch> _HJGL_Batch_PointBatch;
|
||||
@@ -73386,6 +73388,8 @@ namespace Model
|
||||
partial void OnIsFinishedChanged();
|
||||
partial void OnStateChanging(System.Nullable<int> value);
|
||||
partial void OnStateChanged();
|
||||
partial void OnFlowingSectionChanging(string value);
|
||||
partial void OnFlowingSectionChanged();
|
||||
#endregion
|
||||
|
||||
public HJGL_Pipeline()
|
||||
@@ -74087,6 +74091,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FlowingSection", DbType="NVarChar(200)")]
|
||||
public string FlowingSection
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._FlowingSection;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._FlowingSection != value))
|
||||
{
|
||||
this.OnFlowingSectionChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._FlowingSection = value;
|
||||
this.SendPropertyChanged("FlowingSection");
|
||||
this.OnFlowingSectionChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_[HJGL_Pipeline_Base_TestMedium1", Storage="_Base_TestMedium", ThisKey="LeakMedium", OtherKey="TestMediumId", IsForeignKey=true)]
|
||||
public Base_TestMedium Base_TestMedium
|
||||
{
|
||||
@@ -77363,6 +77387,8 @@ namespace Model
|
||||
|
||||
private string _MatchableWPQ;
|
||||
|
||||
private string _TwoJointType;
|
||||
|
||||
private EntitySet<HJGL_Batch_BatchTrustItem> _HJGL_Batch_BatchTrustItem;
|
||||
|
||||
private EntitySet<HJGL_Batch_PointBatchItem> _HJGL_Batch_PointBatchItem;
|
||||
@@ -77497,6 +77523,8 @@ namespace Model
|
||||
partial void OnAuditDateChanged();
|
||||
partial void OnMatchableWPQChanging(string value);
|
||||
partial void OnMatchableWPQChanged();
|
||||
partial void OnTwoJointTypeChanging(string value);
|
||||
partial void OnTwoJointTypeChanged();
|
||||
#endregion
|
||||
|
||||
public HJGL_WeldJoint()
|
||||
@@ -78446,6 +78474,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TwoJointType", DbType="NVarChar(100)")]
|
||||
public string TwoJointType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TwoJointType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TwoJointType != value))
|
||||
{
|
||||
this.OnTwoJointTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._TwoJointType = value;
|
||||
this.SendPropertyChanged("TwoJointType");
|
||||
this.OnTwoJointTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_Batch_BatchTrustItem_HJGL_WeldJoint", Storage="_HJGL_Batch_BatchTrustItem", ThisKey="WeldJointId", OtherKey="WeldJointId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<HJGL_Batch_BatchTrustItem> HJGL_Batch_BatchTrustItem
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user