using System; using System.Collections.Generic; using Abp.Application.Services.Dto; using WeEngine.CommonDto.PortraitDto; using WeEngine.CommonDto.ReportDto; namespace WeApp.TrainingPortrait.Dto { public class GroupReportDto : EntityDto { public string PackageName { get; set; } /// /// 培训营名称 /// public string Name { get; set; } /// /// 培训营 /// public string CampNo { get; set; } /// /// 培训营名称 /// public string CampName { get; set; } /// /// 开始时间 /// public DateTime? StartDate { get; set; } /// /// 结束时间 /// public DateTime? EndDate { get; set; } /// /// 演练时长 /// public decimal TrainingMinute { get; set; } /// /// 演练角色 /// public string RoleNames { get; set; } /// /// 主办单位 /// public string Organizer { get; set; } /// /// 演练目标 /// public string Purposes { get; set; } /// /// 演练成绩 /// public string EvalQualitativeResult { get; set; } public List ChartData { get; set; } public List Scenes { get; set; } public RoundScoreDto ScoreData { get; set; } public List ReportEvalStrings { get; set; } } public class ReportEvalString { public ReportEvalString() { } public ReportEvalString(int type, string name, string content) { Type = type; Name = name; Content = content; } public ReportEvalString(int type, string content) { Type = type; Content = content; } public int Type { get; set; } public string Name { get; set; } public string Content { get; set; } } }