材料匹配生成焊接任务单修改

This commit is contained in:
2024-12-26 14:42:15 +08:00
parent 0a2f9ea3a7
commit 9c2b6d962a
14 changed files with 272 additions and 56 deletions
+84
View File
@@ -100360,6 +100360,10 @@ namespace Model
private System.Nullable<System.DateTime> _AuditDate2;
private string _SerialNumber;
private System.Nullable<int> _PipeLineSortIndex;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -100414,6 +100418,10 @@ namespace Model
partial void OnAuditMan2Changed();
partial void OnAuditDate2Changing(System.Nullable<System.DateTime> value);
partial void OnAuditDate2Changed();
partial void OnSerialNumberChanging(string value);
partial void OnSerialNumberChanged();
partial void OnPipeLineSortIndexChanging(System.Nullable<int> value);
partial void OnPipeLineSortIndexChanged();
#endregion
public HJGL_WeldTask()
@@ -100921,6 +100929,46 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SerialNumber", DbType="NVarChar(50)")]
public string SerialNumber
{
get
{
return this._SerialNumber;
}
set
{
if ((this._SerialNumber != value))
{
this.OnSerialNumberChanging(value);
this.SendPropertyChanging();
this._SerialNumber = value;
this.SendPropertyChanged("SerialNumber");
this.OnSerialNumberChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipeLineSortIndex", DbType="Int")]
public System.Nullable<int> PipeLineSortIndex
{
get
{
return this._PipeLineSortIndex;
}
set
{
if ((this._PipeLineSortIndex != value))
{
this.OnPipeLineSortIndexChanging(value);
this.SendPropertyChanging();
this._PipeLineSortIndex = value;
this.SendPropertyChanged("PipeLineSortIndex");
this.OnPipeLineSortIndexChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;
@@ -281421,6 +281469,10 @@ namespace Model
private System.Nullable<System.DateTime> _TableDate;
private string _SerialNumber;
private System.Nullable<int> _PipeLineSortIndex;
private string _WeldJointCode;
private System.Nullable<decimal> _Dia;
@@ -281695,6 +281747,38 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SerialNumber", DbType="NVarChar(50)")]
public string SerialNumber
{
get
{
return this._SerialNumber;
}
set
{
if ((this._SerialNumber != value))
{
this._SerialNumber = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipeLineSortIndex", DbType="Int")]
public System.Nullable<int> PipeLineSortIndex
{
get
{
return this._PipeLineSortIndex;
}
set
{
if ((this._PipeLineSortIndex != value))
{
this._PipeLineSortIndex = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldJointCode", DbType="NVarChar(50)")]
public string WeldJointCode
{