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