using System;
using System.Collections.Generic;
using Abp.AutoMapper;
using Abp.Application.Services.Dto;
using AutoMapper.Configuration.Annotations;
namespace WeApp.BasicInfo.TrainingRoleGroup.Dto
{
///
/// 演练角色组预案信息维护
///
[AutoMapTo(typeof(TrainingRoleGroupInfo)),AutoMapFrom(typeof(TrainingRoleGroupInfo))]
public class TrainingRoleGroupDto: EntityDto
{
///
/// 预案名称
///
public string RoleGroupName { get; set; }
///
/// 角色
///
public string Roles { get; set; }
///
/// 预案描述
///
public string Description { get; set; }
///
/// 角色
///
[Ignore]
public string RoleNames { get; set; }
[Ignore]
public List RoleNos { get; set; }
}
}