using System.ComponentModel.DataAnnotations;
using Abp.Application.Services.Dto;
using Abp.AutoMapper;
namespace WeApp.BasicInfo.StudentTip.Dto
{
///
/// 学员提示信息
///
[AutoMapTo(typeof(StudentTipInfo))]
public class StudentTipUpdateDto : EntityDto
{
///
/// 简称
///
[StringLength(StudentTipInfo.NameMaxLength)]
public string Name { get; set; }
///
/// 角色
///
[StringLength(StudentTipInfo.RoleNameMaxLength)]
public string RoleName { get; set; }
///
/// 内容
///
[StringLength(StudentTipInfo.ContentMaxLength)]
public string Content { get; set; }
}
}