0522-001
This commit is contained in:
@@ -161831,6 +161831,8 @@ namespace Model
|
||||
|
||||
private System.Nullable<decimal> _DesignNum;
|
||||
|
||||
private System.Nullable<int> _SortIndex;
|
||||
|
||||
private EntitySet<JDGL_QuantityCompletion> _JDGL_QuantityCompletion;
|
||||
|
||||
private EntityRef<Base_CNProfessional> _Base_CNProfessional;
|
||||
@@ -161853,6 +161855,8 @@ namespace Model
|
||||
partial void OnUnitChanged();
|
||||
partial void OnDesignNumChanging(System.Nullable<decimal> value);
|
||||
partial void OnDesignNumChanged();
|
||||
partial void OnSortIndexChanging(System.Nullable<int> value);
|
||||
partial void OnSortIndexChanged();
|
||||
#endregion
|
||||
|
||||
public JDGL_QuantityList()
|
||||
@@ -161991,6 +161995,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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_JDGL_QuantityCompletion_JDGL_QuantityList", Storage="_JDGL_QuantityCompletion", ThisKey="QuantityListId", OtherKey="QuantityListId", DeleteRule="NO ACTION")]
|
||||
public EntitySet<JDGL_QuantityCompletion> JDGL_QuantityCompletion
|
||||
{
|
||||
@@ -327273,6 +327297,8 @@ namespace Model
|
||||
|
||||
private string _Unit;
|
||||
|
||||
private System.Nullable<int> _SortIndex;
|
||||
|
||||
private System.Nullable<double> _TotalPlanNum;
|
||||
|
||||
private System.Nullable<double> _TotalRealNum;
|
||||
@@ -327499,6 +327525,22 @@ 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._SortIndex = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TotalPlanNum", DbType="Float")]
|
||||
public System.Nullable<double> TotalPlanNum
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user