using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace VideoAnalysisCore.Model.Dto { public class AIQuestionDto { /// /// 问题 /// public string Question { get; set; } /// /// 知识点id /// public string KnowPointId { get; set; } } public class VideoQuestionOSSDto: VideoQuestion { /// /// 问题 /// public AIQuestionDto[]? QuestionArr { get; set; } public string FilePath { get; set; } public string Type { get; set; } public string KnowPointId { get; set; } } public class VideoQuestionShowDto : VideoQuestion { public VideoQuestionKonw[] KonwArr { get; set; } } }