feat(hjgl): 完善焊接任务与质量管理流程

This commit is contained in:
2026-08-19 17:13:33 +08:00
parent 08792e0dc8
commit 679e9f6cec
68 changed files with 2481 additions and 1170 deletions
-260
View File
@@ -21516,8 +21516,6 @@ namespace Model
private EntitySet<HJGL_WeldJoint> _HJGL_WeldJoint;
private EntitySet<HJGL_PreWeldFitupCheck> _HJGL_PreWeldFitupCheck;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -21535,7 +21533,6 @@ namespace Model
public Base_GrooveType()
{
this._HJGL_WeldJoint = new EntitySet<HJGL_WeldJoint>(new Action<HJGL_WeldJoint>(this.attach_HJGL_WeldJoint), new Action<HJGL_WeldJoint>(this.detach_HJGL_WeldJoint));
this._HJGL_PreWeldFitupCheck = new EntitySet<HJGL_PreWeldFitupCheck>(new Action<HJGL_PreWeldFitupCheck>(this.attach_HJGL_PreWeldFitupCheck), new Action<HJGL_PreWeldFitupCheck>(this.detach_HJGL_PreWeldFitupCheck));
OnCreated();
}
@@ -21632,19 +21629,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_PreWeldFitupCheck_GrooveType", Storage="_HJGL_PreWeldFitupCheck", ThisKey="GrooveTypeId", OtherKey="GrooveTypeId", DeleteRule="NO ACTION")]
public EntitySet<HJGL_PreWeldFitupCheck> HJGL_PreWeldFitupCheck
{
get
{
return this._HJGL_PreWeldFitupCheck;
}
set
{
this._HJGL_PreWeldFitupCheck.Assign(value);
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -21677,17 +21661,6 @@ namespace Model
entity.Base_GrooveType = null;
}
private void attach_HJGL_PreWeldFitupCheck(HJGL_PreWeldFitupCheck entity)
{
this.SendPropertyChanging();
entity.Base_GrooveType = this;
}
private void detach_HJGL_PreWeldFitupCheck(HJGL_PreWeldFitupCheck entity)
{
this.SendPropertyChanging();
entity.Base_GrooveType = null;
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Base_HSSEStandardListType")]
@@ -107989,12 +107962,6 @@ namespace Model
private string _WeldJointId;
private string _GrooveTypeId;
private string _GrooveProcessType;
private System.Nullable<decimal> _GrooveAngle;
private System.Nullable<decimal> _FitupGap;
private System.Nullable<decimal> _Misalignment;
@@ -108009,22 +107976,12 @@ namespace Model
private string _Remark;
private System.Nullable<decimal> _WeldReinforcement;
private System.Nullable<decimal> _WeldHeight;
private System.Nullable<decimal> _WeldWidth;
private string _SurfaceDefect;
private string _CheckResult;
private string _UnqualifiedReason;
private string _RectifyRequirement;
private EntityRef<Base_GrooveType> _Base_GrooveType;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -108035,12 +107992,6 @@ namespace Model
partial void OnProjectIdChanged();
partial void OnWeldJointIdChanging(string value);
partial void OnWeldJointIdChanged();
partial void OnGrooveTypeIdChanging(string value);
partial void OnGrooveTypeIdChanged();
partial void OnGrooveProcessTypeChanging(string value);
partial void OnGrooveProcessTypeChanged();
partial void OnGrooveAngleChanging(System.Nullable<decimal> value);
partial void OnGrooveAngleChanged();
partial void OnFitupGapChanging(System.Nullable<decimal> value);
partial void OnFitupGapChanged();
partial void OnMisalignmentChanging(System.Nullable<decimal> value);
@@ -108055,14 +108006,6 @@ namespace Model
partial void OnCreateTimeChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
partial void OnWeldReinforcementChanging(System.Nullable<decimal> value);
partial void OnWeldReinforcementChanged();
partial void OnWeldHeightChanging(System.Nullable<decimal> value);
partial void OnWeldHeightChanged();
partial void OnWeldWidthChanging(System.Nullable<decimal> value);
partial void OnWeldWidthChanged();
partial void OnSurfaceDefectChanging(string value);
partial void OnSurfaceDefectChanged();
partial void OnCheckResultChanging(string value);
partial void OnCheckResultChanged();
partial void OnUnqualifiedReasonChanging(string value);
@@ -108073,7 +108016,6 @@ namespace Model
public HJGL_PreWeldFitupCheck()
{
this._Base_GrooveType = default(EntityRef<Base_GrooveType>);
OnCreated();
}
@@ -108137,70 +108079,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GrooveTypeId", DbType="NVarChar(50)")]
public string GrooveTypeId
{
get
{
return this._GrooveTypeId;
}
set
{
if ((this._GrooveTypeId != value))
{
if (this._Base_GrooveType.HasLoadedOrAssignedValue)
{
throw new System.Data.Linq.ForeignKeyReferenceAlreadyHasValueException();
}
this.OnGrooveTypeIdChanging(value);
this.SendPropertyChanging();
this._GrooveTypeId = value;
this.SendPropertyChanged("GrooveTypeId");
this.OnGrooveTypeIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GrooveProcessType", DbType="NVarChar(100)")]
public string GrooveProcessType
{
get
{
return this._GrooveProcessType;
}
set
{
if ((this._GrooveProcessType != value))
{
this.OnGrooveProcessTypeChanging(value);
this.SendPropertyChanging();
this._GrooveProcessType = value;
this.SendPropertyChanged("GrooveProcessType");
this.OnGrooveProcessTypeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GrooveAngle", DbType="Decimal(18,2)")]
public System.Nullable<decimal> GrooveAngle
{
get
{
return this._GrooveAngle;
}
set
{
if ((this._GrooveAngle != value))
{
this.OnGrooveAngleChanging(value);
this.SendPropertyChanging();
this._GrooveAngle = value;
this.SendPropertyChanged("GrooveAngle");
this.OnGrooveAngleChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_FitupGap", DbType="Decimal(18,2)")]
public System.Nullable<decimal> FitupGap
{
@@ -108341,86 +108219,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldReinforcement", DbType="Decimal(18,2)")]
public System.Nullable<decimal> WeldReinforcement
{
get
{
return this._WeldReinforcement;
}
set
{
if ((this._WeldReinforcement != value))
{
this.OnWeldReinforcementChanging(value);
this.SendPropertyChanging();
this._WeldReinforcement = value;
this.SendPropertyChanged("WeldReinforcement");
this.OnWeldReinforcementChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldHeight", DbType="Decimal(18,2)")]
public System.Nullable<decimal> WeldHeight
{
get
{
return this._WeldHeight;
}
set
{
if ((this._WeldHeight != value))
{
this.OnWeldHeightChanging(value);
this.SendPropertyChanging();
this._WeldHeight = value;
this.SendPropertyChanged("WeldHeight");
this.OnWeldHeightChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldWidth", DbType="Decimal(18,2)")]
public System.Nullable<decimal> WeldWidth
{
get
{
return this._WeldWidth;
}
set
{
if ((this._WeldWidth != value))
{
this.OnWeldWidthChanging(value);
this.SendPropertyChanging();
this._WeldWidth = value;
this.SendPropertyChanged("WeldWidth");
this.OnWeldWidthChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SurfaceDefect", DbType="NVarChar(500)")]
public string SurfaceDefect
{
get
{
return this._SurfaceDefect;
}
set
{
if ((this._SurfaceDefect != value))
{
this.OnSurfaceDefectChanging(value);
this.SendPropertyChanging();
this._SurfaceDefect = value;
this.SendPropertyChanged("SurfaceDefect");
this.OnSurfaceDefectChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckResult", DbType="NVarChar(20)")]
public string CheckResult
{
@@ -108481,40 +108279,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_PreWeldFitupCheck_GrooveType", Storage="_Base_GrooveType", ThisKey="GrooveTypeId", OtherKey="GrooveTypeId", IsForeignKey=true)]
public Base_GrooveType Base_GrooveType
{
get
{
return this._Base_GrooveType.Entity;
}
set
{
Base_GrooveType previousValue = this._Base_GrooveType.Entity;
if (((previousValue != value)
|| (this._Base_GrooveType.HasLoadedOrAssignedValue == false)))
{
this.SendPropertyChanging();
if ((previousValue != null))
{
this._Base_GrooveType.Entity = null;
previousValue.HJGL_PreWeldFitupCheck.Remove(this);
}
this._Base_GrooveType.Entity = value;
if ((value != null))
{
value.HJGL_PreWeldFitupCheck.Add(this);
this._GrooveTypeId = value.GrooveTypeId;
}
else
{
this._GrooveTypeId = default(string);
}
this.SendPropertyChanged("Base_GrooveType");
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -279112,8 +278876,6 @@ namespace Model
private string _TrustCode;
private string _OutputMasterId;
private System.Nullable<System.DateTime> _DemandDate;
private System.Nullable<System.DateTime> _CompleteDate;
@@ -279140,8 +278902,6 @@ namespace Model
partial void OnConstructionProfessionalChanged();
partial void OnTrustCodeChanging(string value);
partial void OnTrustCodeChanged();
partial void OnOutputMasterIdChanging(string value);
partial void OnOutputMasterIdChanged();
partial void OnDemandDateChanging(System.Nullable<System.DateTime> value);
partial void OnDemandDateChanged();
partial void OnCompleteDateChanging(System.Nullable<System.DateTime> value);
@@ -279279,26 +279039,6 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OutputMasterId", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
public string OutputMasterId
{
get
{
return this._OutputMasterId;
}
set
{
if ((this._OutputMasterId != value))
{
this.OnOutputMasterIdChanging(value);
this.SendPropertyChanging();
this._OutputMasterId = value;
this.SendPropertyChanged("OutputMasterId");
this.OnOutputMasterIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DemandDate", DbType="DateTime")]
public System.Nullable<System.DateTime> DemandDate
{