| 123456789101112131415161718192021222324252627 |
- using Abp.Application.Services.Dto;
- using Abp.AutoMapper;
- namespace WeApp.BasicInfo.StudentTip.Dto
- {
- /// <summary>
- /// 学员提示信息
- /// </summary>
- [AutoMapTo(typeof(StudentTipInfo)), AutoMapFrom(typeof(StudentTipInfo))]
- public class StudentTipDto : EntityDto<string>
- {
- /// <summary>
- /// 简称
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// 角色
- /// </summary>
- public string RoleName { get; set; }
- /// <summary>
- /// 内容
- /// </summary>
- public string Content { get; set; }
- }
- }
|