44 lines
1.2 KiB
C#
44 lines
1.2 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 视频片段试题知识点关系表
|
|
/// </summary>
|
|
[SugarTable("videoquestionkonw")]
|
|
public class VideoQuestionKonw : IDB
|
|
{
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 视频任务id
|
|
/// </summary>
|
|
public long VideoTaskId { get; set; }
|
|
/// <summary>
|
|
/// 知识点名称
|
|
/// </summary>
|
|
public string KnowPoint { get; set; }
|
|
/// <summary>
|
|
/// 知识点ID
|
|
/// </summary>
|
|
public string KnowPointId { get; set; }
|
|
/// <summary>
|
|
/// 视频阶段id
|
|
/// <para>隶属于<see cref="VideoKonwPoint.StageId"/></para>
|
|
/// </summary>
|
|
public long StageId { get; set; }
|
|
}
|
|
}
|