using System; using System.ComponentModel.DataAnnotations; using Abp.AutoMapper; using Abp.Application.Services.Dto; using WeOnlineApp.Configuration; namespace WeOnlineApp.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 Organizer { get; set; } /// /// 联系方式 /// public string ContactInfo { get; set; } /// /// 培训营状态 /// public int CampState { get; set; } /// /// 演练目标 /// public string Purposes { get; set; } /// /// 考核角色 /// public string AssessRoleNames { get; set; } /// /// 每轮总分 /// public decimal RoundScore { get; set; } /// /// 全局变量 /// public string Variable { get; set; } /// /// 开始时间 /// public DateTime? StartDate { get; set; } /// /// 结束时间 /// public DateTime? EndDate { get; set; } /// /// 最大演练时长 /// public decimal MaxTrainingMinute { get; set; } /// /// 培训营描述 /// public string Description { get; set; } /// /// 行为标签 /// public string EvalBehaviorTags { get; set; } /// /// 课程类型 /// public string SubjectType { get; set; } /// /// 课程积分 /// public int SubjectPoint { get; set; } public string StudyContent { get; set; } } }