| 123456789101112131415161718192021222324252627 |
- using System;
- using Abp.AutoMapper;
- using Abp.Application.Services.Dto;
- namespace WePlatform.WeLib.Guide.Dto
- {
-
- /// <summary>
- /// 引导信息库管理
- /// </summary>
- [AutoMapTo(typeof(GuideInfo)),AutoMapFrom(typeof(GuideInfo))]
- public class GuideDto: EntityDto<string>
- {
- /// <summary>
- /// 提示名称
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// 提示详情
- /// </summary>
- public string Description { get; set; }
- /// <summary>
- /// 提示类型
- /// </summary>
- public int GuideType { get; set; }
- }
- }
|