2023-02-20 001 焊接修改

This commit is contained in:
2023-02-20 10:49:51 +08:00
parent 7e66339f48
commit ef6bbc170e
37 changed files with 1649 additions and 306 deletions
+217
View File
@@ -530,6 +530,9 @@ namespace Model
partial void InsertHJGL_Pipeline_Component(HJGL_Pipeline_Component instance);
partial void UpdateHJGL_Pipeline_Component(HJGL_Pipeline_Component instance);
partial void DeleteHJGL_Pipeline_Component(HJGL_Pipeline_Component instance);
partial void InsertHJGL_Pipeline_ComponentJoint(HJGL_Pipeline_ComponentJoint instance);
partial void UpdateHJGL_Pipeline_ComponentJoint(HJGL_Pipeline_ComponentJoint instance);
partial void DeleteHJGL_Pipeline_ComponentJoint(HJGL_Pipeline_ComponentJoint instance);
partial void InsertHJGL_PipeLineMat(HJGL_PipeLineMat instance);
partial void UpdateHJGL_PipeLineMat(HJGL_PipeLineMat instance);
partial void DeleteHJGL_PipeLineMat(HJGL_PipeLineMat instance);
@@ -2852,6 +2855,14 @@ namespace Model
}
}
public System.Data.Linq.Table<HJGL_Pipeline_ComponentJoint> HJGL_Pipeline_ComponentJoint
{
get
{
return this.GetTable<HJGL_Pipeline_ComponentJoint>();
}
}
public System.Data.Linq.Table<HJGL_PipeLineMat> HJGL_PipeLineMat
{
get
@@ -77368,6 +77379,8 @@ namespace Model
private System.Nullable<System.DateTime> _ReceiveDate;
private System.Nullable<int> _ProductionState;
private EntityRef<HJGL_Pipeline> _HJGL_Pipeline;
#region
@@ -77406,6 +77419,8 @@ namespace Model
partial void OnReceiveManChanged();
partial void OnReceiveDateChanging(System.Nullable<System.DateTime> value);
partial void OnReceiveDateChanged();
partial void OnProductionStateChanging(System.Nullable<int> value);
partial void OnProductionStateChanged();
#endregion
public HJGL_Pipeline_Component()
@@ -77738,6 +77753,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProductionState", DbType="Int")]
public System.Nullable<int> ProductionState
{
get
{
return this._ProductionState;
}
set
{
if ((this._ProductionState != value))
{
this.OnProductionStateChanging(value);
this.SendPropertyChanging();
this._ProductionState = value;
this.SendPropertyChanged("ProductionState");
this.OnProductionStateChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_Pipeline_Component_HJGL_Pipeline", Storage="_HJGL_Pipeline", ThisKey="PipelineId", OtherKey="PipelineId", IsForeignKey=true)]
public HJGL_Pipeline HJGL_Pipeline
{
@@ -77793,6 +77828,188 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.HJGL_Pipeline_ComponentJoint")]
public partial class HJGL_Pipeline_ComponentJoint : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _Id;
private string _PipelineComponentId;
private string _PipelineComponentCode;
private string _WeldJointId;
private string _WeldJointCode;
private System.Nullable<int> _State;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnIdChanging(string value);
partial void OnIdChanged();
partial void OnPipelineComponentIdChanging(string value);
partial void OnPipelineComponentIdChanged();
partial void OnPipelineComponentCodeChanging(string value);
partial void OnPipelineComponentCodeChanged();
partial void OnWeldJointIdChanging(string value);
partial void OnWeldJointIdChanged();
partial void OnWeldJointCodeChanging(string value);
partial void OnWeldJointCodeChanged();
partial void OnStateChanging(System.Nullable<int> value);
partial void OnStateChanged();
#endregion
public HJGL_Pipeline_ComponentJoint()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="VarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string Id
{
get
{
return this._Id;
}
set
{
if ((this._Id != value))
{
this.OnIdChanging(value);
this.SendPropertyChanging();
this._Id = value;
this.SendPropertyChanged("Id");
this.OnIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipelineComponentId", DbType="VarChar(50)")]
public string PipelineComponentId
{
get
{
return this._PipelineComponentId;
}
set
{
if ((this._PipelineComponentId != value))
{
this.OnPipelineComponentIdChanging(value);
this.SendPropertyChanging();
this._PipelineComponentId = value;
this.SendPropertyChanged("PipelineComponentId");
this.OnPipelineComponentIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipelineComponentCode", DbType="VarChar(50)")]
public string PipelineComponentCode
{
get
{
return this._PipelineComponentCode;
}
set
{
if ((this._PipelineComponentCode != value))
{
this.OnPipelineComponentCodeChanging(value);
this.SendPropertyChanging();
this._PipelineComponentCode = value;
this.SendPropertyChanged("PipelineComponentCode");
this.OnPipelineComponentCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldJointId", DbType="VarChar(50)")]
public string WeldJointId
{
get
{
return this._WeldJointId;
}
set
{
if ((this._WeldJointId != value))
{
this.OnWeldJointIdChanging(value);
this.SendPropertyChanging();
this._WeldJointId = value;
this.SendPropertyChanged("WeldJointId");
this.OnWeldJointIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldJointCode", DbType="VarChar(50)")]
public string WeldJointCode
{
get
{
return this._WeldJointCode;
}
set
{
if ((this._WeldJointCode != value))
{
this.OnWeldJointCodeChanging(value);
this.SendPropertyChanging();
this._WeldJointCode = value;
this.SendPropertyChanged("WeldJointCode");
this.OnWeldJointCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_State", DbType="Int")]
public System.Nullable<int> State
{
get
{
return this._State;
}
set
{
if ((this._State != value))
{
this.OnStateChanging(value);
this.SendPropertyChanging();
this._State = value;
this.SendPropertyChanged("State");
this.OnStateChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void SendPropertyChanging()
{
if ((this.PropertyChanging != null))
{
this.PropertyChanging(this, emptyChangingEventArgs);
}
}
protected virtual void SendPropertyChanged(String propertyName)
{
if ((this.PropertyChanged != null))
{
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.HJGL_PipeLineMat")]
public partial class HJGL_PipeLineMat : INotifyPropertyChanging, INotifyPropertyChanged
{