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