feat: 完善材料管理与焊接业务功能

This commit is contained in:
2026-08-06 15:33:11 +08:00
parent e418b60fdb
commit 1de898812e
49 changed files with 2566 additions and 555 deletions
+48
View File
@@ -101668,6 +101668,8 @@ namespace Model
private string _Code;
private string _DesignInstitute;
private EntityRef<Base_Project> _Base_Project;
private EntitySet<HJGL_PipeLineMat> _HJGL_PipeLineMat;
@@ -101698,6 +101700,8 @@ namespace Model
partial void OnBatchNoChanged();
partial void OnCodeChanging(string value);
partial void OnCodeChanged();
partial void OnDesignInstituteChanging(string value);
partial void OnDesignInstituteChanged();
#endregion
public HJGL_MaterialCodeLib()
@@ -101931,6 +101935,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DesignInstitute", DbType="NVarChar(200)")]
public string DesignInstitute
{
get
{
return this._DesignInstitute;
}
set
{
if ((this._DesignInstitute != value))
{
this.OnDesignInstituteChanging(value);
this.SendPropertyChanging();
this._DesignInstitute = value;
this.SendPropertyChanged("DesignInstitute");
this.OnDesignInstituteChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_MaterialCodeLib_Base_Project", Storage="_Base_Project", ThisKey="ProjectId", OtherKey="ProjectId", IsForeignKey=true)]
public Base_Project Base_Project
{
@@ -106844,6 +106868,8 @@ namespace Model
private string _WeldJointId;
private string _MaterialCode2;
private string _PipeArea;
private EntityRef<HJGL_MaterialCodeLib> _HJGL_MaterialCodeLib;
@@ -106869,6 +106895,8 @@ namespace Model
partial void OnWeldJointIdChanged();
partial void OnMaterialCode2Changing(string value);
partial void OnMaterialCode2Changed();
partial void OnPipeAreaChanging(string value);
partial void OnPipeAreaChanged();
#endregion
public HJGL_PipeLineMat()
@@ -107045,6 +107073,26 @@ namespace Model
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipeArea", DbType="NChar(1)")]
public string PipeArea
{
get
{
return this._PipeArea;
}
set
{
if ((this._PipeArea != value))
{
this.OnPipeAreaChanging(value);
this.SendPropertyChanging();
this._PipeArea = value;
this.SendPropertyChanged("PipeArea");
this.OnPipeAreaChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_HJGL_PipeLineMat_HJGL_MaterialCodeLib", Storage="_HJGL_MaterialCodeLib", ThisKey="MaterialCode", OtherKey="MaterialCode", IsForeignKey=true)]
public HJGL_MaterialCodeLib HJGL_MaterialCodeLib