材料入库导入增加序号

This commit is contained in:
2024-11-12 17:56:01 +08:00
parent 2cdb47a854
commit 57a4adcd9e
17 changed files with 115 additions and 28 deletions
+24
View File
@@ -259100,6 +259100,8 @@ namespace Model
private System.Nullable<decimal> _ActNum;
private System.Nullable<int> _SortIndex;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -259116,6 +259118,8 @@ namespace Model
partial void OnPlanNumChanged();
partial void OnActNumChanging(System.Nullable<decimal> value);
partial void OnActNumChanged();
partial void OnSortIndexChanging(System.Nullable<int> value);
partial void OnSortIndexChanged();
#endregion
public Tw_InOutPlanDetail()
@@ -259243,6 +259247,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SortIndex", DbType="Int")]
public System.Nullable<int> SortIndex
{
get
{
return this._SortIndex;
}
set
{
if ((this._SortIndex != value))
{
this.OnSortIndexChanging(value);
this.SendPropertyChanging();
this._SortIndex = value;
this.SendPropertyChanged("SortIndex");
this.OnSortIndexChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;