From d0e8c438d2e8060f44b6b38ba94cdb486548e0bd Mon Sep 17 00:00:00 2001 From: gaofei1985 <181547018@qq.com> Date: Wed, 22 May 2024 10:31:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SGGL/Model/Model.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/SGGL/Model/Model.cs b/SGGL/Model/Model.cs index b133a0e9..9187fdb4 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -103358,6 +103358,8 @@ namespace Model private System.Nullable _Sort; + private System.Nullable _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 value); partial void OnSortChanged(); + partial void OnStatesChanging(System.Nullable 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 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;