using SqlSugar; using System.ComponentModel.DataAnnotations; using System.Net; using System.Text.Json; using UserCenter.Model.Enum; using VideoAnalysisCore.AICore.GPT.Dto; using VideoAnalysisCore.AICore.SherpaOnnx; using VideoAnalysisCore.Model.Enum; using VideoAnalysisCore.Model.Interface; using Whisper.net; namespace VideoAnalysisCore.Model { /// /// 视频片段试题知识点关系表 /// [SugarTable("videoquestionkonw")] public class VideoQuestionKonw : IDB { /// /// id /// [SugarColumn(IsPrimaryKey = true)] public long Id { get; set; } /// /// 视频任务id /// public long VideoTaskId { get; set; } /// /// 知识点名称 /// public string KnowPoint { get; set; } /// /// 知识点ID /// public string KnowPointId { get; set; } /// /// 视频阶段id /// 隶属于 /// public long StageId { get; set; } } }