using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; using System.ComponentModel.DataAnnotations; using WeApp.Configuration; using WeApp.TrainingCamp; namespace WeApp.TrainingCampGroup.Dto { /// /// 培训营分组维护 /// [AutoMapTo(typeof(CampGroupInfo))] public class CampGroupUpdateDto: EntityDto { /// /// 分组名称 /// [StringLength(CampGroupInfo.NameLength)] public string Name { get; set; } /// /// 培训营 /// [StringLength(IwbConsts.PrimaryKey)] public string CampNo { get; set; } // /// // /// 培训营分组状态 // /// //public int CampGroupState { get; set; } // /// // /// 开始时间 // /// //public DateTime? StartDate { get; set; } // /// // /// 结束时间 // /// //public DateTime? EngDate { get; set; } // /// // /// 演练时长 // /// //public decimal TrainingMinute { get; set; } } }