From 45df9e14cd7f7093ea8693d2655866086f215280 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=BE=E9=BC=A0?= Date: Thu, 24 Jul 2025 08:10:19 +0000 Subject: [PATCH] =?UTF-8?q?update=20Admin.NET/Admin.NET.Core/Entity/SysCon?= =?UTF-8?q?fig.cs.=20Length=E5=92=8CMaxLength=20=E5=86=97=E4=BD=99;?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 松鼠 --- Admin.NET/Admin.NET.Core/Entity/SysConfig.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Admin.NET/Admin.NET.Core/Entity/SysConfig.cs b/Admin.NET/Admin.NET.Core/Entity/SysConfig.cs index d5afeae81..1e2c2e0bb 100644 --- a/Admin.NET/Admin.NET.Core/Entity/SysConfig.cs +++ b/Admin.NET/Admin.NET.Core/Entity/SysConfig.cs @@ -19,21 +19,19 @@ public partial class SysConfig : EntityBase /// 名称 /// [SugarColumn(ColumnDescription = "名称", Length = 64)] - [Required, MaxLength(64)] + [Required] public virtual string Name { get; set; } /// /// 编码 /// [SugarColumn(ColumnDescription = "编码", Length = 64)] - [MaxLength(64)] public string? Code { get; set; } /// /// 参数值 /// [SugarColumn(ColumnDescription = "参数值", Length = 512)] - [MaxLength(512)] [IgnoreUpdateSeedColumn] public string? Value { get; set; } @@ -47,7 +45,6 @@ public partial class SysConfig : EntityBase /// 分组编码 /// [SugarColumn(ColumnDescription = "分组编码", Length = 64)] - [MaxLength(64)] public string? GroupCode { get; set; } /// @@ -60,6 +57,5 @@ public partial class SysConfig : EntityBase /// 备注 /// [SugarColumn(ColumnDescription = "备注", Length = 256)] - [MaxLength(256)] public string? Remark { get; set; } } \ No newline at end of file -- Gitee