using System;
using Abp.AutoMapper;
using Abp.Application.Services.Dto;
using WeOnlineApp.TrainingCamp;
namespace WeOnlineApp.TrainingCampPlay.Dto
{
///
/// 演练营信息
///
[AutoMapTo(typeof(CampPlayInfo)),AutoMapFrom(typeof(CampPlayInfo))]
public class CampPlayDto: EntityDto
{
///
/// 培训营名称
///
public string Name { get; set; }
///
/// 培训营
///
public string CampNo { get; set; }
///
/// 培训营名称
///
public string CampName { get; set; }
///
/// 演练模式
///
public int PlayModel { get; set; }
///
/// 是否公开
///
public bool IsPublic { get; set; }
///
/// 邀请码
///
public string InvitationCode { get; set; }
///
/// 演练角色
///
public string PlayRoleNames { get; set; }
///
/// 演练状态
///
public int PlayState { get; set; }
///
/// 当前轮次
///
public int RoundIndex { get; set; }
///
/// 开始时间
///
public DateTime? StartDate { get; set; }
///
/// 结束时间
///
public DateTime? EndDate { get; set; }
///
/// 演练时长
///
public decimal TrainingMinute { get; set; }
// ///
// /// 演练信息
// ///
//public string RunningInfo { get; set; }
}
}