2023-07-03
This commit is contained in:
@@ -292222,6 +292222,8 @@ namespace Model
|
||||
|
||||
private string _GrooveTypeId;
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private EntityRef<Base_GrooveType> _Base_GrooveType;
|
||||
|
||||
private EntityRef<Base_WeldingMethod> _Base_WeldingMethod;
|
||||
@@ -292248,6 +292250,8 @@ namespace Model
|
||||
partial void OnWeldTypeIdChanged();
|
||||
partial void OnGrooveTypeIdChanging(string value);
|
||||
partial void OnGrooveTypeIdChanged();
|
||||
partial void OnProjectIdChanging(string value);
|
||||
partial void OnProjectIdChanged();
|
||||
#endregion
|
||||
|
||||
public PW_ProcedureImageManage()
|
||||
@@ -292411,6 +292415,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
|
||||
public string ProjectId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectId != value))
|
||||
{
|
||||
this.OnProjectIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProjectId = value;
|
||||
this.SendPropertyChanged("ProjectId");
|
||||
this.OnProjectIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_PW_ProcedureImageManage_Base_GrooveType", Storage="_Base_GrooveType", ThisKey="GrooveTypeId", OtherKey="GrooveTypeId", IsForeignKey=true)]
|
||||
public Base_GrooveType Base_GrooveType
|
||||
{
|
||||
@@ -292671,6 +292695,8 @@ namespace Model
|
||||
|
||||
private string _ImageId;
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private EntityRef<Base_Material> _Base_Material;
|
||||
|
||||
private EntityRef<PW_ProcedureImageManage> _PW_ProcedureImageManage;
|
||||
@@ -292785,6 +292811,8 @@ namespace Model
|
||||
partial void OnDescriptionChanged();
|
||||
partial void OnImageIdChanging(string value);
|
||||
partial void OnImageIdChanged();
|
||||
partial void OnProjectIdChanging(string value);
|
||||
partial void OnProjectIdChanged();
|
||||
#endregion
|
||||
|
||||
public PW_WeldingProcedure()
|
||||
@@ -293862,6 +293890,26 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
|
||||
public string ProjectId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectId != value))
|
||||
{
|
||||
this.OnProjectIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProjectId = value;
|
||||
this.SendPropertyChanged("ProjectId");
|
||||
this.OnProjectIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_PW_WeldingProcedure_BS_WeldMaterial", Storage="_Base_Material", ThisKey="MaterialId", OtherKey="MaterialId", IsForeignKey=true)]
|
||||
public Base_Material Base_Material
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user