This commit is contained in:
youngq 2024-11-29 18:05:17 +08:00
parent 3e6dbcc07c
commit fd27e72e03
2 changed files with 15 additions and 0 deletions

View File

@ -27,5 +27,12 @@ namespace AI.Common.Dtos
/// 默认值:
///</summary>
public long Timestamp { get; set; }
/// <summary>
/// 备 注:角色 1:用户 2:GPT
/// 默认值:
///</summary>
public int Chater { get; set; }
}
}

View File

@ -55,6 +55,14 @@ namespace AI.Common.Entities
public long Timestamp { get; set; }
/// <summary>
/// 备 注:聊天角色 1:用户 2:gpt
/// 默认值:
///</summary>
[SugarColumn(ColumnName = "chater")]
public int Chater { get; set; }
}
}