using System; using System.Collections.Generic; using Abp.Application.Services.Dto; using WeEngine.Packages; namespace WeApp.TrainingEval.Dto { public class GroupDto : EntityDto { public string CampNo { get; set; } /// /// 分组名称 /// public string Name { get; set; } /// /// 培训营分组状态 /// public int CampGroupState { get; set; } /// /// 开始时间 /// public DateTime? StartDate { get; set; } /// /// 结束时间 /// public DateTime? EngDate { get; set; } /// /// 演练时长 /// public decimal TrainingMinute { get; set; } public int RoundIndex => RunningInfo?.CurrentRoundIndex ?? 1; public PackageDataNode RunningInfo { get; set; } public List GroupScore { get; set; } } public class LogDto { public string No { get; set; } public string Msg { get; set; } } public class UpdateLogDto:EntityDto { public string Text { get; set; } } }