style: 修改Ai_Session表类型

This commit is contained in:
ccnetcore
2025-06-29 12:21:28 +08:00
parent d15e6e395b
commit d4f00eb89f

View File

@@ -9,6 +9,8 @@ public class SessionAggregateRoot : FullAuditedAggregateRoot<Guid>
{ {
public Guid UserId { get; set; } public Guid UserId { get; set; }
public string SessionTitle { get; set; } public string SessionTitle { get; set; }
[SugarColumn(ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string SessionContent { get; set; } public string SessionContent { get; set; }
public string? Remark { get; set; } public string? Remark { get; set; }
} }