using Abp.AutoMapper; using AutoMapper.Configuration.Annotations; using WeOnlineApp.TrainingCamp; namespace WeOnlineApp.TrainingCampPlay.Dto { [AutoMapTo(typeof(CampPlayScoreInfo)), AutoMapFrom(typeof(CampPlayScoreInfo))] public class PlayScoreDto { public int RoundIndex { get; set; } public string CampNo { get; set; } public string GroupNo { get; set; } /// /// 系统评分 /// public decimal SystemScore { get; set; } /// /// 矫正评分 /// public decimal CorrectionScore { get; set; } /// /// 专家评分 /// public decimal SpecialistScore { get; set; } /// /// 大众评分 /// public decimal AudienceScore { get; set; } /// /// 参考评分 /// public decimal ReferenceScore { get; set; } /// /// 最终评分 /// public decimal FinalTotalScore { get; set; } /// /// 行为标签得分信息 /// public string BehaviorTagScoreInfo { get; set; } /// /// 是否发送评分到前台及推演引擎 /// [Ignore] public bool IsSend { get; set; } } }