using Abp.Application.Services.Dto; using Abp.AutoMapper; using System.ComponentModel.DataAnnotations; namespace WeApp.BasicInfo.StudentHelp.Dto { /// /// 学员提示信息 /// [AutoMapTo(typeof(StudentHelpInfo))] public class StudentHelpUpdateDto : EntityDto { /// /// 简称 /// [StringLength(StudentHelpInfo.NameMaxLength)] public string HelpName { get; set; } /// /// 内容 /// [StringLength(StudentHelpInfo.ContentMaxLength)] public string HelpContent { get; set; } } }