using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace AI.Common.Entities { /// /// /// [SugarTable("question_log")] public class QuestionLog { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public long Id { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "create_time", IsOnlyIgnoreInsert = true, IsOnlyIgnoreUpdate = true)] public DateTime Create_time { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "uid")] public long Uid { get; set; } /// /// 备 注:问题内容 /// 默认值: /// [SugarColumn(ColumnName = "question_content")] public string? QuestionContent { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "gpt_answer")] public string? GptAnswer { get; set; } } }