2023-11-08

This commit is contained in:
2023-11-08 17:26:59 +08:00
parent 1b7463957c
commit 11357590c9
19 changed files with 389 additions and 135 deletions
+42
View File
@@ -94622,6 +94622,8 @@ namespace Model
private System.Nullable<int> _ProductionState;
private System.Nullable<bool> _IsPrint;
private EntityRef<HJGL_Pipeline> _HJGL_Pipeline;
#region
@@ -94662,6 +94664,8 @@ namespace Model
partial void OnReceiveDateChanged();
partial void OnProductionStateChanging(System.Nullable<int> value);
partial void OnProductionStateChanged();
partial void OnIsPrintChanging(System.Nullable<bool> value);
partial void OnIsPrintChanged();
#endregion
public HJGL_Pipeline_Component()
@@ -95014,6 +95018,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsPrint", DbType="Bit")]
public System.Nullable<bool> IsPrint
{
get
{
return this._IsPrint;
}
set
{
if ((this._IsPrint != value))
{
this.OnIsPrintChanging(value);
this.SendPropertyChanging();
this._IsPrint = value;
this.SendPropertyChanged("IsPrint");
this.OnIsPrintChanged();
}
}
}
[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
{
@@ -272332,6 +272356,8 @@ namespace Model
private string _PipelineCode;
private string _PipelineId;
private string _WeldTypeCode;
private string _WeldingMethodCode;
@@ -272712,6 +272738,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipelineId", DbType="NVarChar(50)")]
public string PipelineId
{
get
{
return this._PipelineId;
}
set
{
if ((this._PipelineId != value))
{
this._PipelineId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldTypeCode", DbType="NVarChar(50)")]
public string WeldTypeCode
{