59 lines
1.4 KiB
C#
59 lines
1.4 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using VOL.Entity.Enum;
|
|
|
|
namespace VOL.Model.Ai
|
|
{
|
|
/// <summary>
|
|
/// 专项动作
|
|
/// </summary>
|
|
public class SpecialActionParam
|
|
{
|
|
/// <summary>
|
|
/// 动作Id
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 专项水平Id
|
|
/// </summary>
|
|
public int LevelId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 动作名称
|
|
/// </summary>
|
|
public string ActionName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 动作类型
|
|
/// </summary>
|
|
public SpecialActionType ActionType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 动作示范-视频路径
|
|
/// </summary>
|
|
public string ActionVideoPath { get; set; }
|
|
|
|
/// <summary>
|
|
/// 要领讲解-视频路径
|
|
/// </summary>
|
|
public string ExplainVideoPath { get; set; }
|
|
|
|
/// <summary>
|
|
/// 练习方法-视频路径
|
|
/// </summary>
|
|
public string ExerciseVideoPath { get; set; }
|
|
|
|
/// <summary>
|
|
/// 达标标准-视频路径
|
|
/// </summary>
|
|
public string StandardVideoPath { get; set; }
|
|
}
|
|
}
|