using Abp.Application.Services.Dto; using Abp.AutoMapper; using System; namespace WeApp.TrainingCamp.Dto { /// /// 演练培训营管理 /// [AutoMapTo(typeof(CampInfo)), AutoMapFrom(typeof(CampInfo))] public class CampDto : EntityDto { /// /// 培训营名称 /// public string Name { get; set; } /// /// 方案包编号 /// public string PackageNo { get; set; } /// /// 方案包名称 /// public string PackageName { get; set; } public string Address { get; set; } /// /// 模型类型 /// public int EngineModelType { get; set; } /// /// 考核角色 /// public string AssessRoleNames { get; set; } /// /// 评分规则 /// public string ScoreRule { get; set; } /// /// 未考核角色满分 /// public bool AssessAuto { get; set; } /// /// 每轮总分 /// public decimal RoundScore { get; set; } /// /// 计划日期 /// public DateTime PlanDate { get; set; } /// /// 开始时间 /// public DateTime? StartDate { get; set; } /// /// 结束时间 /// public DateTime? EngDate { get; set; } /// /// 培训营描述 /// public string Description { get; set; } /// /// 每轮时长 /// public decimal MaxRoundMinute { get; set; } /// /// 培训营状态 /// public int CampState { get; set; } /// /// 是否显示提示 /// public bool IsShowTip { get; set; } } }