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