修复数据库连接字符串过长导致插入失败的问题

This commit is contained in:
suncaomei 2024-11-17 21:56:57 +08:00
parent 1540e360b6
commit b11b08515f

View File

@ -47,8 +47,8 @@ public partial class SysTenant : EntityBase
/// <summary> /// <summary>
/// 数据库连接 /// 数据库连接
/// </summary> /// </summary>
[SugarColumn(ColumnDescription = "数据库连接", Length = 256)] [SugarColumn(ColumnDescription = "数据库连接", Length = 512)]
[MaxLength(256)] [MaxLength(512)]
public string? Connection { get; set; } public string? Connection { get; set; }
/// <summary> /// <summary>