107 lines
2.8 KiB
C#
107 lines
2.8 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.DomainModels;
|
|
|
|
namespace VOL.Model.Ai
|
|
{
|
|
/// <summary>
|
|
/// 专项教学详情
|
|
/// </summary>
|
|
public class Ai_TeachingItemsDetailModel
|
|
{
|
|
/// <summary>
|
|
/// 基本技能
|
|
/// </summary>
|
|
public List<SpecialLevelBasicSkill> BasicSkillList { get; set; } = new List<SpecialLevelBasicSkill>();
|
|
|
|
/// <summary>
|
|
/// 专项体能
|
|
/// </summary>
|
|
public List<SpecialLevelSpecialStamina> SpecialStaminaList { get; set; } = new List<SpecialLevelSpecialStamina>();
|
|
}
|
|
/// <summary>
|
|
/// 专项水平-基本技能
|
|
/// </summary>
|
|
public class SpecialLevelBasicSkill : IdAndNameDto
|
|
{
|
|
/// <summary>
|
|
/// 开始年级
|
|
/// </summary>
|
|
public int StartGrade { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束年级
|
|
/// </summary>
|
|
public int EndGrade { get; set; }
|
|
|
|
/// <summary>
|
|
/// 教学模式集合
|
|
/// </summary>
|
|
public List<SpecialActionBasicSkill> SpecialActionModes { get; set; } = new List<SpecialActionBasicSkill>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 专项水平-专项体能
|
|
/// </summary>
|
|
public class SpecialLevelSpecialStamina : IdAndNameDto
|
|
{
|
|
/// <summary>
|
|
/// 开始年级
|
|
/// </summary>
|
|
public int StartGrade { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束年级
|
|
/// </summary>
|
|
public int EndGrade { get; set; }
|
|
|
|
/// <summary>
|
|
/// 教学模式集合
|
|
/// </summary>
|
|
public List<SpecialActionSpecialStamina> SpecialActionModes { get; set; } = new List<SpecialActionSpecialStamina>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// 专项动作-基本技能
|
|
/// </summary>
|
|
public class SpecialActionBasicSkill : IdAndNameDto
|
|
{
|
|
/// <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; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 专项动作-专项体能
|
|
/// </summary>
|
|
public class SpecialActionSpecialStamina : IdAndNameDto
|
|
{
|
|
/// <summary>
|
|
/// 动作示范-视频路径
|
|
/// </summary>
|
|
public string ActionVideoPath { get; set; }
|
|
}
|
|
}
|