using System; using Abp.Application.Services.Dto; namespace WeOnlineApp.TrainingCampPlay.Dto { public class PlayHistoryDto : EntityDto { public long UserId { get; set; } public string UserName { get; set; } public string RealName { get; set; } public string PackageName { get; set; } /// /// 培训营名称 /// public string Name { get; set; } /// /// 培训营 /// public string CampNo { get; set; } /// /// 培训营名称 /// public string CampName { get; set; } /// /// 演练模式 /// public int PlayModel { get; set; } /// /// 开始时间 /// public DateTime? StartDate { get; set; } /// /// 结束时间 /// public DateTime? EndDate { get; set; } /// /// 演练时长 /// public decimal TrainingMinute { get; set; } // /// // /// 演练信息 // /// //public string RunningInfo { get; set; } } }