using Abp.Application.Services.Dto; using Abp.AutoMapper; using WeOnlineApp.TrainingCamp; namespace WeOnlineApp.TrainingCampPlay.Dto { [AutoMapTo(typeof(CampPlayUserInfo)), AutoMapFrom(typeof(CampPlayUserInfo))] public class CampPlayUserDto : EntityDto { /// /// 培训营编号 /// public string CampNo { get; set; } /// /// 演练营 /// public string PlayNo { get; set; } /// /// 演练名称 /// public string PlayName { get; set; } /// /// 参与者 /// public long PlayUserId { get; set; } /// /// 用户名 /// public string UserName { get; set; } /// /// 参与者姓名 /// public string PlayerName { get; set; } /// /// 参与者头像 /// public string ImagePath { get; set; } /// /// 参与者类型 /// public int PlayerType { get; set; } /// /// 参与者状态 /// public int PlayerState { get; set; } public string Role { get; set; } } }