using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Application { /// /// 学习风格 /// public class StudyStyleResponseDTO { /// /// /// public string UserName { get; set; } /// /// /// public DateTimeOffset TestTime { get; set; } /// /// /// public string Description { get; set; } /// /// /// public PicChart picCharts { get; set; } public List reportItems { get; set; } public List studyStyles { get; set; } /// /// /// public StudyStyleResult studyStyleResult { get; set; } } public class StudyStyleTables { public string Type { get; set; } public int Score { get; set; } public string Description { get; set; } } public class StudyStyleResult { /// /// 优点 /// public string Advantage { get; set; } /// /// 追求 /// public string Seek { get; set; } /// /// 最爱问 /// public string FavoriteQuestions { get; set; } /// /// 适合的职业 /// public string SuitableOccupation { get; set; } } /// /// /// public class StudyStyleRequestDto { /// /// /// public long ScaleId { get; set; } } }