using System; using Abp.AutoMapper; using Abp.Application.Services.Dto; using System.ComponentModel.DataAnnotations; namespace WePlatform.WeLib.Guide.Dto { /// /// 引导信息库管理 /// [AutoMapTo(typeof(GuideInfo))] public class GuideUpdateDto: EntityDto { /// /// 提示名称 /// [StringLength(GuideInfo.NameLength)] public string Name { get; set; } /// /// 提示详情 /// [StringLength(GuideInfo.DescLength)] public string Description { get; set; } /// /// 提示类型 /// public int GuideType { get; set; } } }