37 lines
893 B
C#
37 lines
893 B
C#
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
|
|
{
|
|
|
|
/// <summary>
|
|
/// 问题
|
|
/// </summary>
|
|
public string Question { get; set; }
|
|
/// <summary>
|
|
/// 知识点id
|
|
/// </summary>
|
|
public string KnowPointId { get; set; }
|
|
}
|
|
public class VideoQuestionOSSDto: VideoQuestion
|
|
{
|
|
/// <summary>
|
|
/// 问题
|
|
/// </summary>
|
|
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; }
|
|
}
|
|
}
|