| 12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- using System.ComponentModel.DataAnnotations;
- using AutoMapper.Configuration.Annotations;
- namespace WeApp.BasicInfo.TrainingRoleGroup.Dto
- {
-
- /// <summary>
- /// 演练角色组预案信息维护
- /// </summary>
- [AutoMapTo(typeof(TrainingRoleGroupInfo))]
- public class TrainingRoleGroupUpdateDto: EntityDto<string>
- {
-
- /// <summary>
- /// 预案名称
- /// </summary>
- [Required]
- public string RoleGroupName { get; set; }
-
- /// <summary>
- /// 角色
- /// </summary>
- public string Roles { get; set; }
-
- /// <summary>
- /// 预案描述
- /// </summary>
- public string Description { get; set; }
- [Ignore]
- public List<string> RoleNos { get; set; }
- }
- }
|