From 609c7c821f720458690014ae281b1444153bed57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=B7=B3?= <454313500@qq.com> Date: Sun, 18 Feb 2024 16:34:55 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DExtraProperties?= =?UTF-8?q?=E5=BF=BD=E7=95=A5=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Entities/TableAggregateRoot.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Yi.Abp.Net8/module/code-gen/Yi.Framework.CodeGen.Domain/Entities/TableAggregateRoot.cs b/Yi.Abp.Net8/module/code-gen/Yi.Framework.CodeGen.Domain/Entities/TableAggregateRoot.cs index bee9af39..48ba4165 100644 --- a/Yi.Abp.Net8/module/code-gen/Yi.Framework.CodeGen.Domain/Entities/TableAggregateRoot.cs +++ b/Yi.Abp.Net8/module/code-gen/Yi.Framework.CodeGen.Domain/Entities/TableAggregateRoot.cs @@ -1,4 +1,5 @@ using SqlSugar; +using Volo.Abp.Data; using Volo.Abp.Domain.Entities; namespace Yi.Framework.CodeGen.Domain.Entities @@ -24,5 +25,8 @@ namespace Yi.Framework.CodeGen.Domain.Entities /// [Navigate(NavigateType.OneToMany, nameof(FieldEntity.TableId))] public List Fields { get; set; } + + [SugarColumn(IsIgnore =true)] + public override ExtraPropertyDictionary ExtraProperties { get; protected set; } } }