提交代码

This commit is contained in:
高飞 2024-05-22 10:31:05 +08:00
parent 8e03a1cff8
commit d0e8c438d2
1 changed files with 24 additions and 0 deletions

View File

@ -103358,6 +103358,8 @@ namespace Model
private System.Nullable<int> _Sort;
private System.Nullable<int> _States;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@ -103404,6 +103406,8 @@ namespace Model
partial void OnOperateTimeChanged();
partial void OnSortChanging(System.Nullable<int> value);
partial void OnSortChanged();
partial void OnStatesChanging(System.Nullable<int> value);
partial void OnStatesChanged();
#endregion
public Control_PointCropping()
@ -103831,6 +103835,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_States", DbType="Int")]
public System.Nullable<int> States
{
get
{
return this._States;
}
set
{
if ((this._States != value))
{
this.OnStatesChanging(value);
this.SendPropertyChanging();
this._States = value;
this.SendPropertyChanged("States");
this.OnStatesChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;