From 5f04bcf5741e3e5be4654dc3ea6691c9a9509bcd Mon Sep 17 00:00:00 2001 From: 10191 <506754232@qq.com> Date: Thu, 16 Mar 2023 20:13:17 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9B=86=E5=9B=A2=E9=A1=B9=E7=9B=AE=E7=BC=96?= =?UTF-8?q?=E5=8F=B7?= 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 ecc436ae..de5ee3b5 100644 --- a/SGGL/Model/Model.cs +++ b/SGGL/Model/Model.cs @@ -24215,6 +24215,8 @@ namespace Model private string _MonitorId; + private string _ProjectNum; + private EntitySet _Accident_AccidentHandle; private EntitySet _Accident_AccidentPersonRecord; @@ -24837,6 +24839,8 @@ namespace Model partial void OnMonitorPWChanged(); partial void OnMonitorIdChanging(string value); partial void OnMonitorIdChanged(); + partial void OnProjectNumChanging(string value); + partial void OnProjectNumChanged(); #endregion public Base_Project() @@ -25788,6 +25792,26 @@ namespace Model } } + [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectNum", DbType="VarChar(50)")] + public string ProjectNum + { + get + { + return this._ProjectNum; + } + set + { + if ((this._ProjectNum != value)) + { + this.OnProjectNumChanging(value); + this.SendPropertyChanging(); + this._ProjectNum = value; + this.SendPropertyChanged("ProjectNum"); + this.OnProjectNumChanged(); + } + } + } + [global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_Accident_AccidentHandle_Base_Project", Storage="_Accident_AccidentHandle", ThisKey="ProjectId", OtherKey="ProjectId", DeleteRule="NO ACTION")] public EntitySet Accident_AccidentHandle {