48 lines
1.2 KiB
C#
48 lines
1.2 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;
|
|
|
|
namespace VOL.Model.Ai
|
|
{
|
|
/// <summary>
|
|
/// 专项水平信息
|
|
/// </summary>
|
|
public class Ai_SpecialLevelDto
|
|
{
|
|
/// <summary>
|
|
/// Id
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 水平名称
|
|
/// </summary>
|
|
public string? LevelName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始年级
|
|
/// </summary>
|
|
public int StartGrade { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束年级
|
|
/// </summary>
|
|
public int EndGrade { get; set; }
|
|
|
|
/// <summary>
|
|
/// 基本技能
|
|
/// </summary>
|
|
public List<Ai_SpecialActionDto> BasicSkillList { get; set; } = new List<Ai_SpecialActionDto>();
|
|
|
|
/// <summary>
|
|
/// 专项体能
|
|
/// </summary>
|
|
public List<Ai_SpecialActionDto> SpecialStaminaList { get; set; } = new List<Ai_SpecialActionDto>();
|
|
}
|
|
}
|